summaryrefslogtreecommitdiff
path: root/list-functions-2.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'list-functions-2.lisp')
-rw-r--r--list-functions-2.lisp4
1 files changed, 4 insertions, 0 deletions
diff --git a/list-functions-2.lisp b/list-functions-2.lisp
index 2e73a46..0bae5f3 100644
--- a/list-functions-2.lisp
+++ b/list-functions-2.lisp
@@ -1,3 +1,7 @@
+(export '(copy-tree assoc assoc-if assoc-if-not rassoc rassoc-if
+ rassoc-if-not sublis nsublis))
+
+
(defun copy-tree (tree)
(typecase tree
(cons (cons (copy-tree (car cons)) (copy-tree (cdr cons))))