projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b88e511
)
Fix character reader for input like #\)
author
David Vázquez
<davazp@gmail.com>
Tue, 18 Dec 2012 22:28:51 +0000
(23:28 +0100)
committer
David Vázquez
<davazp@gmail.com>
Tue, 18 Dec 2012 22:28:51 +0000
(23:28 +0100)
lispstrack.lisp
patch
|
blob
|
history
diff --git
a/lispstrack.lisp
b/lispstrack.lisp
index
7a0b9b8
..
ba60596
100644
(file)
--- a/
lispstrack.lisp
+++ b/
lispstrack.lisp
@@
-164,7
+164,9
@@
(#\'
(list 'function (ls-read stream)))
(#\\
- (let ((cname (read-until stream #'terminalp)))
+ (let ((cname
+ (concat (string (%read-char stream))
+ (read-until stream #'terminalp))))
(cond
((string= cname "space") (char-code #\space))
((string= cname "newline") (char-code #\newline))