projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69f4ead
)
Compare strings with string= rather than equal
author
David Vázquez
<davazp@gmail.com>
Fri, 24 May 2013 01:13:16 +0000
(
02:13
+0100)
committer
David Vázquez
<davazp@gmail.com>
Fri, 24 May 2013 01:13:16 +0000
(
02:13
+0100)
src/read.lisp
patch
|
blob
|
history
diff --git
a/src/read.lisp
b/src/read.lisp
index
3c15f9d
..
0c1f440
100644
(file)
--- a/
src/read.lisp
+++ b/
src/read.lisp
@@
-332,7
+332,7
@@
(incf index))
(setq name (subseq string index))))
;; Canonalize symbol name and package
- (setq name (if (equal package "JS")
+ (setq name (if (string= package "JS")
(setq name (unescape-token name))
(setq name (string-upcase-noescaped name))))
(setq package (find-package package))