constraint define-syntax in the R5RS language
svn: r7727
This commit is contained in:
parent
3503c4603a
commit
f085196bf8
|
@ -8,8 +8,9 @@
|
|||
(read-square-bracket-as-paren #f)
|
||||
|
||||
(print-vector-length #f)
|
||||
(print-pair-curly-braces #t)
|
||||
(print-mpair-curly-braces #f)
|
||||
;; Printing pairs with curly braces is a bad idea, because
|
||||
;; syntax errors then use curly braces!
|
||||
|
||||
(define-syntax out
|
||||
(syntax-rules ()
|
||||
|
|
|
@ -406,6 +406,13 @@
|
|||
(syntax/loc stx
|
||||
(define . rest))]))
|
||||
|
||||
(define-syntax (r5rs:define-syntax stx)
|
||||
(syntax-case stx ()
|
||||
[(_ id expr)
|
||||
(identifier? #'id)
|
||||
(syntax/loc stx
|
||||
(define-syntax id expr))]))
|
||||
|
||||
(define-syntax r5rs:if
|
||||
(syntax-rules ()
|
||||
[(_ test then)
|
||||
|
@ -419,10 +426,11 @@
|
|||
[r5rs:if if]
|
||||
[r5rs:lambda lambda]
|
||||
[r5rs:letrec letrec]
|
||||
[r5rs:define define])
|
||||
[r5rs:define define]
|
||||
[r5rs:define-syntax define-syntax])
|
||||
let and or cond case delay do
|
||||
let* begin set!
|
||||
define-syntax let-syntax letrec-syntax
|
||||
let-syntax letrec-syntax
|
||||
=> else
|
||||
|
||||
;; We have to include the following MzScheme-isms to do anything,
|
||||
|
|
Loading…
Reference in New Issue
Block a user