projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0d25f7
)
Fix thinko in call to MAKE-XML-!ENTITY.
author
Chris Hanson
<org/chris-hanson/cph>
Sat, 24 Jul 2004 04:03:09 +0000
(
04:03
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Sat, 24 Jul 2004 04:03:09 +0000
(
04:03
+0000)
v7/src/xml/xhtml-entities.scm
patch
|
blob
|
history
diff --git
a/v7/src/xml/xhtml-entities.scm
b/v7/src/xml/xhtml-entities.scm
index 34c58d26802cdc7b6ececa827d33d63879c71272..8a9060fac6cc25b8819c27e2300cf97f9cc048ce 100644
(file)
--- a/
v7/src/xml/xhtml-entities.scm
+++ b/
v7/src/xml/xhtml-entities.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: xhtml-entities.scm,v 1.
1 2004/07/24 03:45:3
9 cph Exp $
+$Id: xhtml-entities.scm,v 1.
2 2004/07/24 04:03:0
9 cph Exp $
Copyright 2004 Massachusetts Institute of Technology
@@
-279,7
+279,7
@@
USA.
))
(define html-entities
- (map (lambda (b) (
apply make-xml-!entity b
))
+ (map (lambda (b) (
make-xml-!entity (car b) (cdr b)
))
html-entity-alist))
(define html-char->name-map