Made (define foo) expand to (define foo (void)).
This commit is contained in:
parent
8adb1639f0
commit
6018e2200d
|
@ -1 +1 @@
|
||||||
1341
|
1342
|
||||||
|
|
|
@ -786,7 +786,9 @@
|
||||||
((_ (id . fmls) b b* ...) (id? id)
|
((_ (id . fmls) b b* ...) (id? id)
|
||||||
(values id (cons 'defun (cons fmls (cons b b*)))))
|
(values id (cons 'defun (cons fmls (cons b b*)))))
|
||||||
((_ id val) (id? id)
|
((_ id val) (id? id)
|
||||||
(values id (cons 'expr val))))))
|
(values id (cons 'expr val)))
|
||||||
|
((_ id) (id? id)
|
||||||
|
(values id (cons 'expr (bless '(void))))))))
|
||||||
|
|
||||||
(define parse-define-syntax
|
(define parse-define-syntax
|
||||||
(lambda (x)
|
(lambda (x)
|
||||||
|
|
Loading…
Reference in New Issue