From: Mark Wooding Date: Sat, 29 Apr 2006 20:47:30 +0000 (+0100) Subject: anaphora: Rename package to just `anaphora'. X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/commitdiff_plain/1dc0d275c03f63aa59f5674b8a1b9f4dfd6ccf80 anaphora: Rename package to just `anaphora'. I think that, for once, nothing else needs to be updated for this renaming. ;-) --- diff --git a/anaphora.lisp b/anaphora.lisp index 9d5ccd2..0b8cd3e 100644 --- a/anaphora.lisp +++ b/anaphora.lisp @@ -23,12 +23,12 @@ ;;; along with this program; if not, write to the Free Software Foundation, ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -(defpackage #:mdw.anaphora +(defpackage #:anaphora (:use #:common-lisp) (:export #:it #:aif #:aif2 #:awhen #:awhen2 #:aand #:awhile #:asetf #:acond)) -(in-package #:mdw.anaphora) +(in-package #:anaphora) (defmacro aif (cond then &optional else) "Bind `it' to result of COND when evaluating THEN or ELSE."