diff options
author | dos-reis <gdr@axiomatics.org> | 2011-09-30 10:59:54 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2011-09-30 10:59:54 +0000 |
commit | 1dad9f2ee595ae4255a7afecc249c4d4a02e148a (patch) | |
tree | 9eb0fa81bd4f3b658ba831aa7345dacb2d4a793e /src/boot/initial-env.lisp | |
parent | 441c2259ea4bdda1c2a0a4091a55955536998270 (diff) | |
download | open-axiom-1dad9f2ee595ae4255a7afecc249c4d4a02e148a.tar.gz |
* boot/ast.boot (bfTableIteratorBindingForm): New.
(bfExpandTableIters): Use it.
* boot/initial-env.lisp (HKEYS): Remove.
* boot/tokens.boot (shoeDictCons): Iterate directly over shoeKeyTable.
(shoePunCons): Likewise.
* boot/translator.boot (shoeReport): Iterate directly over $bootUsed.
(shoeXReport): Likewise.
Diffstat (limited to 'src/boot/initial-env.lisp')
-rw-r--r-- | src/boot/initial-env.lisp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/boot/initial-env.lisp b/src/boot/initial-env.lisp index 1f050115..855ac0da 100644 --- a/src/boot/initial-env.lisp +++ b/src/boot/initial-env.lisp @@ -86,14 +86,6 @@ (shoeprettyprin0 x stream) (terpri stream)) -(defun HKEYS (table) - (let (keys) - (maphash #'(lambda (key val) - (declare (ignore val)) - (push key keys)) table) - keys)) - - (defun strpos (what in start dontcare) (setq what (string what) in (string in)) (if dontcare |