We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90ca0a8 commit b755ec4Copy full SHA for b755ec4
src/julia-parser.scm
@@ -659,11 +659,13 @@
659
(let ((str (begin (take-token s)
660
(parse-string-literal s)))
661
(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)))))
+ (let ((nxt (peek-token s)))
+ (if (and (symbol? nxt) (not (operator? nxt))
+ (not (ts:space? s)))
+ ;; string literal suffix, "s"x
+ (loop `(macrocall ,macname ,(car str)
667
+ ,(string (take-token s))))
668
+ (loop `(macrocall ,macname ,(car str))))))
669
ex))
670
(else ex))))))))
671
0 commit comments