Fixed bug -- LET -> LET*
This commit is contained in:
parent
75dbb6c4bb
commit
acb29ac3bc
|
@ -93,7 +93,7 @@
|
|||
|
||||
|
||||
(define (read-backslash-sequence port)
|
||||
(let ((c1 (read-char port))
|
||||
(let* ((c1 (read-char port))
|
||||
(eof-lose (lambda () (error "Premature EOF within backslash-sequence in meta-arg argument line")))
|
||||
(octet->int (lambda (c)
|
||||
(cond ((eof-object? c) (eof-lose))
|
||||
|
|
Loading…
Reference in New Issue