aboutsummaryrefslogtreecommitdiff
path: root/src/interp/newaux.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-05-25 21:33:06 +0000
committerdos-reis <gdr@axiomatics.org>2009-05-25 21:33:06 +0000
commit48f85cd0f651d269dfc1c641befe1fb1e4c50486 (patch)
tree3b8da34eec93270d4696a19ac3489295952d2244 /src/interp/newaux.lisp
parente7ad9a3ff2ef291339dbb704426a8bef6ab8970a (diff)
downloadopen-axiom-48f85cd0f651d269dfc1c641befe1fb1e4c50486.tar.gz
* interp/sys-constants.boot ($OperatorFunctionNames): New.
* interp/metalex.lisp (|PARSE-OperatorFunctionName|): New. Use it. * interp/fnewmeta.lisp (|PARSE-Category|): Handle operator function names.
Diffstat (limited to 'src/interp/newaux.lisp')
-rw-r--r--src/interp/newaux.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/newaux.lisp b/src/interp/newaux.lisp
index 3d328de7..d8ac603e 100644
--- a/src/interp/newaux.lisp
+++ b/src/interp/newaux.lisp
@@ -205,7 +205,7 @@
;; is `+' for Integers.
(mapcar #'(lambda (x) (MAKEPROP X 'GENERIC 'TRUE))
- '(- = * |rem| |mod| |quo| |div| / ** |exquo| + - < > <= >= ^= ))
+ '(- = * |rem| |mod| |quo| |div| / ** |exquo| + - < > <= >= ~= ))
(defun SPECIALCASESYNTAX () (OR (AND (char= TOK '#\#) (DIGITP CHR))))