aboutsummaryrefslogtreecommitdiff
path: root/src/boot/initial-env.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/boot/initial-env.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/boot/initial-env.lisp')
-rw-r--r--src/boot/initial-env.lisp16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/boot/initial-env.lisp b/src/boot/initial-env.lisp
index 9596211a..1f050115 100644
--- a/src/boot/initial-env.lisp
+++ b/src/boot/initial-env.lisp
@@ -86,14 +86,6 @@
(shoeprettyprin0 x stream)
(terpri stream))
-(defun MAKE-HASHTABLE (id1)
- (let ((test (case id1
- ((EQ ID) #'eq)
- (CVEC #'equal)
- ((UEQUAL EQUAL) #'equal)
- (otherwise (error "bad arg to make-hashtable")))))
- (make-hash-table :test test)))
-
(defun HKEYS (table)
(let (keys)
(maphash #'(lambda (key val)
@@ -122,14 +114,6 @@
(position table cvec
:test-not #'(lambda (x y) (position y x))
:start sint)))
-
-(defun bvec-make-full (n x)
- (make-array (list n)
- :element-type 'bit
- :initial-element x))
-
-(defun make-bvec (n)
- (bvec-make-full n 0))
(defun |shoeReadLisp| (s n)
(multiple-value-list (read-from-string s nil nil :start n)))