aboutsummaryrefslogtreecommitdiff
path: root/src/interp/vmlisp.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-12 15:39:14 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-12 15:39:14 +0000
commit665cb7df0fd6106b61a88667ae132e613d395cc4 (patch)
tree7add9286226ea268e888be8a1c55da11fc182210 /src/interp/vmlisp.lisp
parenta8b9a2f5f65820ce836353e0d25070fa8eaeece9 (diff)
downloadopen-axiom-665cb7df0fd6106b61a88667ae132e613d395cc4.tar.gz
* boot/initial-env.lisp (MAKE-HASHTABLE): Remove.
(BEVC-MAKE-FULL): Likewise. (MAKE-BVEC): Likewise. * boot/tokens.boot (shoeKeyTableCons): Adjust. (shoePunCons): Likewise. (shoeDfu): Likewise. (shoeXref): Likewise.
Diffstat (limited to 'src/interp/vmlisp.lisp')
-rw-r--r--src/interp/vmlisp.lisp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interp/vmlisp.lisp b/src/interp/vmlisp.lisp
index ff5ff941..4159b32d 100644
--- a/src/interp/vmlisp.lisp
+++ b/src/interp/vmlisp.lisp
@@ -1578,7 +1578,3 @@
(defun QUOREM (i j r) ; never used, refed in parini.boot
(multiple-value-bind (x y) (truncate i j)
(rplaca (the cons r) x) (rplacd (the cons r) y)))
-
-(defun MAKE-BVEC (n)
- (make-array (list n) :element-type 'bit :initial-element 0))
-