base: compile-time-defun should define in the interpreter.
[lisp] / 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."