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:
27f33be
)
Oops... make change to processing instructions to match change in
author
Chris Hanson
<org/chris-hanson/cph>
Fri, 22 Aug 2003 15:13:19 +0000
(15:13 +0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Fri, 22 Aug 2003 15:13:19 +0000
(15:13 +0000)
parser.
v7/src/xml/xml-output.scm
patch
|
blob
|
history
diff --git
a/v7/src/xml/xml-output.scm
b/v7/src/xml/xml-output.scm
index fd4adb8a26f727ec346c847e6c4426af3bc41db7..1dd22f298e6283ece792913ce2957bb5b5cc2ba5 100644
(file)
--- a/
v7/src/xml/xml-output.scm
+++ b/
v7/src/xml/xml-output.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: xml-output.scm,v 1.2
3 2003/08/01 19:31:02
cph Exp $
+$Id: xml-output.scm,v 1.2
4 2003/08/22 15:13:19
cph Exp $
Copyright 2001,2002,2003 Massachusetts Institute of Technology
@@
-141,6
+141,7
@@
USA.
(define-method %write-xml ((pi <xml-processing-instructions>) ctx)
(emit-string "<?" ctx)
(write-xml-name (xml-processing-instructions-name pi) ctx)
+ (emit-string " " ctx)
(emit-string (xml-processing-instructions-text pi) ctx)
(emit-string "?>" ctx))
\f