aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-21 15:49:44 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-21 15:49:44 +0000
commite754f97a6955b705b422e3cfa50274560d746d65 (patch)
tree556989acf6503896ac864cb0c483c9fd8d90a9c0
parenta04a446805a1108cd19f633878ca367629c23f4b (diff)
downloadopen-axiom-e754f97a6955b705b422e3cfa50274560d746d65.tar.gz
Fix thinko
-rw-r--r--src/interp/sys-macros.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/sys-macros.lisp b/src/interp/sys-macros.lisp
index c74ada28..8d620a5b 100644
--- a/src/interp/sys-macros.lisp
+++ b/src/interp/sys-macros.lisp
@@ -63,10 +63,10 @@
;;
(defmacro |byteLessThan| (|x| |y|)
- `(< (the fixnum x) (the fixnum y)))
+ `(< (the fixnum ,|x|) (the fixnum ,|y|)))
(defmacro |byteGreaterEqual| (|x| |y|)
- `(>= (the fixnum x) (the fixnum y)))
+ `(>= (the fixnum ,|x|) (the fixnum ,|y|)))
;;
;; -*- BigFloat Constructors -*-