projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f59c2e3
)
Fix bug in string escape
author
David Vazquez
<davazp@gmail.com>
Thu, 20 Dec 2012 19:02:33 +0000
(19:02 +0000)
committer
David Vazquez
<davazp@gmail.com>
Thu, 20 Dec 2012 19:02:33 +0000
(19:02 +0000)
lispstrack.lisp
patch
|
blob
|
history
diff --git
a/lispstrack.lisp
b/lispstrack.lisp
index
dfbfcad
..
2d27c25
100644
(file)
--- a/
lispstrack.lisp
+++ b/
lispstrack.lisp
@@
-635,7
+635,7
@@
(cond
((symbolp sexp) (lookup-variable-translation sexp env))
((integerp sexp) (integer-to-string sexp))
- ((stringp sexp) (concat "\"" sexp "\""))
+ ((stringp sexp) (concat "\"" (escape-string sexp) "\""))
((listp sexp)
(if (assoc (car sexp) *compilations*)
(let ((comp (second (assoc (car sexp) *compilations*))))