diff --git a/src/parsers/command-utils.lisp b/src/parsers/command-utils.lisp index 5ae9b4a..bf4d0b9 100644 --- a/src/parsers/command-utils.lisp +++ b/src/parsers/command-utils.lisp @@ -13,7 +13,7 @@ ;; ;; Some useful rules ;; -(defrule single-line-comment (and "--" (+ (not #\Newline)) #\Newline) +(defrule single-line-comment (and "--" (* (not #\Newline)) #\Newline) (:constant :comment)) (defrule multi-line-comment (and "/*" (+ (not "*/")) "*/")