anaphora: Rename package to just `anaphora'.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 29 Apr 2006 20:47:30 +0000 (21:47 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sun, 30 Apr 2006 12:29:54 +0000 (13:29 +0100)
I think that, for once, nothing else needs to be updated for this
renaming. ;-)

anaphora.lisp

index 9d5ccd2..0b8cd3e 100644 (file)
 ;;; 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."