Bugs item #1441078, was opened at 2006-03-01 11:53
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=1441078&group_id=23735
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Yohanes Santoso (ysantoso)
Assigned to: Nobody/Anonymous (nobody)
Summary: not parsing multi-line comment (srfi-30) correctly
Initial Comment:
SISC 1.11.3
#;> (define-syntax foo
(syntax-rules ()
((foo what)
what)
#|
hi ho
|#
))
#;> Error in read-code: error reading from port
'#<native-input-port>': unexpected close-parenthesis '')''.
?:?:?: <indeterminate call> [Repeated 5 times]
but it's OK within define:
#;> (define (foo x)
#|
hi ho
|#
x)
#;>
Also moonfish discovered:
#;> '(1 #| foo |#)
#;> '(#| foo |# 1)
(1)
#;> '(1 #| foo |# 1)
(1 1)
The first form should have returned (1), but it didn't.
The rest are correct.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=1441078&group_id=23735
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
|