aboutsummaryrefslogtreecommitdiff
path: root/src/boot/initial-env.lisp
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-05-05 01:06:03 +0000
committerdos-reis <gdr@axiomatics.org>2011-05-05 01:06:03 +0000
commit94c6cd6e946964b3710dbe24dbca7c44a36beee0 (patch)
tree3f23e82135247dff27c3b6f1d56a9d587b7eacbd /src/boot/initial-env.lisp
parentaccf24b495a8de5bac09572e588d9b696a130e1a (diff)
downloadopen-axiom-94c6cd6e946964b3710dbe24dbca7c44a36beee0.tar.gz
more cleanup
Diffstat (limited to 'src/boot/initial-env.lisp')
-rw-r--r--src/boot/initial-env.lisp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/boot/initial-env.lisp b/src/boot/initial-env.lisp
index ef82d033..6aa71a2b 100644
--- a/src/boot/initial-env.lisp
+++ b/src/boot/initial-env.lisp
@@ -63,11 +63,6 @@
(defvar *lisp-source-filetype* "lisp")
-(defmacro |shoeOpenOutputFile|
- (stream fn prog)
- `(with-open-file (,stream ,fn :direction :output
- :if-exists :supersede) ,prog))
-
(defun shoeprettyprin1 (x &optional (stream *standard-output*))
(let ((*print-pretty* t)
(*print-array* t)
@@ -91,9 +86,6 @@
(shoeprettyprin0 x stream)
(terpri stream))
-(defun |shoePLACEP| (item)
- (eq item nil))
-
(defun MAKE-HASHTABLE (id1)
(let ((test (case id1
((EQ ID) #'eq)
@@ -144,6 +136,3 @@
(defun |shoeReadLisp| (s n)
(multiple-value-list (read-from-string s nil nil :start n)))
-
-(defun |last| (x)
- (car (last x)))