aboutsummaryrefslogtreecommitdiff
path: root/src/interp/vmlisp.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-12-30 08:50:00 +0000
committerdos-reis <gdr@axiomatics.org>2010-12-30 08:50:00 +0000
commite46eacc852aacf74de6d98ed5aad9249f41eabb0 (patch)
tree7d8c05190be1e45ee6d47cd2415fbb6ee3f048ce /src/interp/vmlisp.lisp
parent865e926e0c7b9f8ad6201315a41a89b2258d77a7 (diff)
downloadopen-axiom-e46eacc852aacf74de6d98ed5aad9249f41eabb0.tar.gz
* interp/vmlisp.lisp (QSTRING): Remove.
(QSTRINGLENGTH): Likewise. (STRINGLENGTH): Likewise. * interp/g-opt.boot ($VMsideEffectFreeOperators): Include %i2s. * interp/g-util.boot: Expand it. * interp/debug.lisp (/LOCATE): Replace STRINGLENGTH with LENGTH. * algebra/fortran.spad.pamphlet: Don't use STRINGIMAGE from Lisp. * algebra/generic.spad.pamphlet: Likewise. * algebra/naalg.spad.pamphlet: Likewise. * algebra/naalgc.spad.pamphlet: Likewise. * algebra/outform.spad.pamphlet: Likewise. * algebra/string.spad.pamphlet: Likewise.
Diffstat (limited to 'src/interp/vmlisp.lisp')
-rw-r--r--src/interp/vmlisp.lisp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/interp/vmlisp.lisp b/src/interp/vmlisp.lisp
index 696c8821..7845b25e 100644
--- a/src/interp/vmlisp.lisp
+++ b/src/interp/vmlisp.lisp
@@ -395,9 +395,6 @@
(defmacro qstimes (x y)
`(the fixnum (* (the fixnum ,x) (the fixnum ,y))))
-(defmacro qstringlength (x)
- `(the fixnum (length (the simple-string ,x))))
-
(defmacro qszerop (x)
`(zerop (the fixnum ,x)))
@@ -449,9 +446,6 @@
(defmacro smintp (n)
`(typep ,n 'fixnum))
-(defmacro stringlength (x)
- `(length (the string ,x)))
-
(defmacro subrp (x)
`(compiled-function-p ,x))