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:
b3f5c5e
)
Fix bug in implementation of empty-element constructors.
author
Chris Hanson
<org/chris-hanson/cph>
Wed, 16 Feb 2005 04:31:24 +0000
(
04:31
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Wed, 16 Feb 2005 04:31:24 +0000
(
04:31
+0000)
v7/src/ssp/xmlrpc.scm
patch
|
blob
|
history
diff --git
a/v7/src/ssp/xmlrpc.scm
b/v7/src/ssp/xmlrpc.scm
index cdd653d2d2578631ceb2c4332a0dcc24f709cbee..68b81bd8ac88507158f31b52f5c8e0979163c754 100644
(file)
--- a/
v7/src/ssp/xmlrpc.scm
+++ b/
v7/src/ssp/xmlrpc.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: xmlrpc.scm,v 1.1
0 2005/02/08 20:40:31
cph Exp $
+$Id: xmlrpc.scm,v 1.1
1 2005/02/16 04:31:24
cph Exp $
Copyright 2003,2004,2005 Massachusetts Institute of Technology
@@
-299,9
+299,9
@@
USA.
empty?)))
(if empty?
(lambda ()
- (make-elt
#f
))
+ (make-elt))
(lambda contents
- (apply make-elt
#f
contents)))))
+ (apply make-elt
(xml-attrs)
contents)))))
(define rpc-elt:array (rpc-elt 'array #f))
(define rpc-elt:base64 (rpc-elt 'base64 #f))