Fixed bug -- LET -> LET*

This commit is contained in:
shivers 1997-11-10 02:50:48 +00:00
parent 75dbb6c4bb
commit acb29ac3bc
1 changed files with 7 additions and 7 deletions

View File

@ -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))