mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 04:25:06 +02:00
For empty string literals, return the empty symbol
This commit is contained in:
parent
c1f883f19e
commit
57926605a5
1 changed files with 1 additions and 1 deletions
|
@ -640,7 +640,7 @@
|
||||||
(cond
|
(cond
|
||||||
((eq? #\| c)
|
((eq? #\| c)
|
||||||
(let ((str (if (null? tok)
|
(let ((str (if (null? tok)
|
||||||
"||"
|
""
|
||||||
(list->string
|
(list->string
|
||||||
(reverse tok)))))
|
(reverse tok)))))
|
||||||
(string->symbol str)))
|
(string->symbol str)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue