summaryrefslogtreecommitdiff
path: root/list-functions.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-06 20:08:20 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-06 20:08:20 +0200
commit83044ff2e19652611f0859efd21252fb483ad4ca (patch)
tree9db178c9fded6a7bc3084df9102d739af830e515 /list-functions.lisp
parentd41a82c4e21ba8e65432a1c0364b524e2b1896a1 (diff)
Add IN-PACKAGE directives to init.lisp.
Diffstat (limited to 'list-functions.lisp')
-rw-r--r--list-functions.lisp11
1 files changed, 8 insertions, 3 deletions
diff --git a/list-functions.lisp b/list-functions.lisp
index 1aac8f8..c23f486 100644
--- a/list-functions.lisp
+++ b/list-functions.lisp
@@ -51,7 +51,7 @@
(car (cdr (first args))))
(shadow 'car)
-(export 'car)
+(unexport 'sys::car (find-package :sys))
(%defun car args
(sys::car (first args)))
@@ -98,7 +98,7 @@
(cdr (cdr (first args))))
(shadow 'cdr)
-(export 'cdr)
+(unexport 'sys::cdr (find-package :sys))
(%defun cdr args
(sys::cdr (first args)))
@@ -138,6 +138,11 @@
;;;; CONS
;;;;-----------------------------------------------------------------
(shadow 'cons)
-(export 'cons)
+(unexport 'sys::cons (find-package :sys))
(%defun cons args
(sys::cons (first args) (second args)))
+
+
+;;;;-----------------------------------------------------------------
+(export '(cons car cdr list* first second third fourth fifth sixth
+ seventh eigthth ninth tenth))