Skip to content

Commit b755ec4

Browse files
committed
fix #1108
1 parent 90ca0a8 commit b755ec4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/julia-parser.scm

+7-5
Original file line numberDiff line numberDiff line change
@@ -659,11 +659,13 @@
659659
(let ((str (begin (take-token s)
660660
(parse-string-literal s)))
661661
(macname (symbol (string ex '_str))))
662-
(if (and (symbol? (peek-token s)) (not (ts:space? s)))
663-
;; string literal suffix, "s"x
664-
(loop `(macrocall ,macname ,(car str)
665-
,(string (take-token s))))
666-
(loop `(macrocall ,macname ,(car str)))))
662+
(let ((nxt (peek-token s)))
663+
(if (and (symbol? nxt) (not (operator? nxt))
664+
(not (ts:space? s)))
665+
;; string literal suffix, "s"x
666+
(loop `(macrocall ,macname ,(car str)
667+
,(string (take-token s))))
668+
(loop `(macrocall ,macname ,(car str))))))
667669
ex))
668670
(else ex))))))))
669671

0 commit comments

Comments
 (0)