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:
a901998
)
Fix bug: list parser wasn't recognizing whitespace before the close
author
Chris Hanson
<org/chris-hanson/cph>
Thu, 26 Oct 2006 02:31:31 +0000
(
02:31
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Thu, 26 Oct 2006 02:31:31 +0000
(
02:31
+0000)
paren.
v7/src/xml/turtle.scm
patch
|
blob
|
history
diff --git
a/v7/src/xml/turtle.scm
b/v7/src/xml/turtle.scm
index 6c3f537e2c3bf7250e88fe8270b522c9125390b5..f62df9f9f4a350c1752c93fb967c4fc3db5a9ec9 100644
(file)
--- a/
v7/src/xml/turtle.scm
+++ b/
v7/src/xml/turtle.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: turtle.scm,v 1.1
2 2006/10/20 02:04:05
cph Exp $
+$Id: turtle.scm,v 1.1
3 2006/10/26 02:31:31
cph Exp $
Copyright 2006 Massachusetts Institute of Technology
@@
-145,7
+145,7
@@
USA.
(* (seq ","
parse:ws*
parse:object-required))
- (alt
")"
+ (alt
(seq parse:ws* ")")
(error #f
"Expected close parenthesis"))))))))))