~ chicken-core (chicken-5) a263b3cec246939354f3459d16f45f69db15e02a
commit a263b3cec246939354f3459d16f45f69db15e02a
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Sat Nov 21 13:19:40 2009 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Sun Nov 22 11:14:10 2009 +0100
removed read-syntax for 'syntax'
Signed-off-by: felix <felix@call-with-current-continuation.org>
diff --git a/library.scm b/library.scm
index a4ae4eaa..54aae68c 100644
--- a/library.scm
+++ b/library.scm
@@ -2587,9 +2587,6 @@ EOF
((#\;)
(##sys#read-char-0 port)
(readrec) (readrec) )
- ((#\')
- (##sys#read-char-0 port)
- (list 'syntax (readrec)) )
((#\`)
(##sys#read-char-0 port)
(list 'quasisyntax (readrec)) )
diff --git a/manual/Non-standard read syntax b/manual/Non-standard read syntax
index 09a5f131..d8e57e88 100644
--- a/manual/Non-standard read syntax
+++ b/manual/Non-standard read syntax
@@ -22,12 +22,6 @@ Treats {{EXPRESSION}} as a comment. That is, the comment runs through the whole
Allows user-defined extension of external representations. (For more information see the documentation for
[[http://srfi.schemers.org/srfi-10/srfi-10.html|SRFI-10]])
-=== Syntax Expression
-
- #'EXPRESSION
-
-An abbreviation for {{(syntax EXPRESSION)}}.
-
=== Location Expression
#$EXPRESSION
Trap