Fixed bug -- LET -> LET*
This commit is contained in:
parent
75dbb6c4bb
commit
acb29ac3bc
|
@ -93,13 +93,13 @@
|
|||
|
||||
|
||||
(define (read-backslash-sequence 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))
|
||||
((char-set-contains? char-set:octal-digits c)
|
||||
(- (char->ascii c) (char->ascii #\0)))
|
||||
(else (error "Non-octal-digit in \\nnn escape sequence in meta-arg argument line." c))))))
|
||||
(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))
|
||||
((char-set-contains? char-set:octal-digits c)
|
||||
(- (char->ascii c) (char->ascii #\0)))
|
||||
(else (error "Non-octal-digit in \\nnn escape sequence in meta-arg argument line." c))))))
|
||||
|
||||
(cond ((eof-object? c1) (eof-lose))
|
||||
|
||||
|
|
Loading…
Reference in New Issue