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:
3df7005
)
Fix bug: DTD can't have namespace on its root element name.
author
Chris Hanson
<org/chris-hanson/cph>
Sat, 24 Jul 2004 04:29:45 +0000
(
04:29
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Sat, 24 Jul 2004 04:29:45 +0000
(
04:29
+0000)
v7/src/xml/xhtml.scm
patch
|
blob
|
history
diff --git
a/v7/src/xml/xhtml.scm
b/v7/src/xml/xhtml.scm
index 5fce26d954bbe06bbc480755dc8837a2598d44f9..7272c07037ebe7ce75536da45d28519d2a1fdefd 100644
(file)
--- a/
v7/src/xml/xhtml.scm
+++ b/
v7/src/xml/xhtml.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: xhtml.scm,v 1.1
1 2004/07/24 03:19:18
cph Exp $
+$Id: xhtml.scm,v 1.1
2 2004/07/24 04:29:45
cph Exp $
Copyright 2002,2003,2004 Massachusetts Institute of Technology
@@
-71,7
+71,7
@@
USA.
(define (html-dtd? object)
(and (xml-dtd? object)
- (
html:html? (xml-dtd-root object)
)
+ (
eq? (xml-dtd-root object) 'html
)
(html-external-id? (xml-dtd-external object))
(null? (xml-dtd-internal object))))