summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Borretti <eudoxiahp@gmail.com>2024-02-06 07:21:03 +1100
committerGitHub <noreply@github.com>2024-02-06 07:21:03 +1100
commiteb38ff738a0cb6f3d5c98568414d27022067aa4a (patch)
tree5369beaececc88e9bc5757e7d5b87bdb7054317a
parentaa6efcbfe77d619ec92fbb83216bab5b0db3ea8c (diff)
parenteba4b0890fcb86f2ec0ec92b1f0602d356985e7d (diff)
Merge pull request #20 from caffe3/fix-non-c-operators
Fix non-C operator parsing
-rw-r--r--src/parser.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.lisp b/src/parser.lisp
index 3ef960b..3875fa1 100644
--- a/src/parser.lisp
+++ b/src/parser.lisp
@@ -167,7 +167,7 @@
(defrule group-separator (group-separatorp character))
-(defrule op-char (not (or alphanumeric group-separator whitespace)))
+(defrule op-char (not (or alphanumeric group-separator whitespace #\$ #\@)))
(defrule operator (+ op-char)
(:lambda (list &bounds start-pos)