aboutsummaryrefslogtreecommitdiff
path: root/module/c/operators.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-06-30 07:07:11 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-07-07 21:17:22 +0200
commit6f9af58e183e40a3c876230e41c3221155e4dcc2 (patch)
tree9b8395fe85fdf18dc380095a797d65ab6806624f /module/c/operators.scm
parentFix escape sequences in chars and strings. (diff)
downloadcalp-6f9af58e183e40a3c876230e41c3221155e4dcc2.tar.gz
calp-6f9af58e183e40a3c876230e41c3221155e4dcc2.tar.xz
C parser minor cleanup.
Diffstat (limited to '')
-rw-r--r--module/c/operators.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/c/operators.scm b/module/c/operators.scm
index 131c702c..910dc8a9 100644
--- a/module/c/operators.scm
+++ b/module/c/operators.scm
@@ -11,7 +11,7 @@
;; apparently part of C
;; https://en.cppreference.com/w/cpp/language/operator_alternative
(define wordy-binary-operators
- '(bitand and_eq and bitor or_eq or xor_eq xor))
+ '(bitand and_eq and bitor or_eq or xor_eq xor not_eq))
(define symbol-binary-operators
(append (map (lambda (x) (symbol-append x '=)) simple-operators)