From 92cb7b11a4db45597d321b4b0b80507d4dbf252a Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 27 Jul 2008 19:10:21 +0200 Subject: Export recently introduced functions. --- control-flow.lisp | 3 +++ list-functions-2.lisp | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/control-flow.lisp b/control-flow.lisp index 0d380aa..9fae748 100644 --- a/control-flow.lisp +++ b/control-flow.lisp @@ -1,3 +1,6 @@ +(export '(identity constantly complement)) + + (defun identity (x) x) 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)))) -- cgit v1.2.3