[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Problem in yesterday's new PCL
- To: gregor.pa@Xerox.COM
- Subject: Problem in yesterday's new PCL
- From: doug@zaphod.prime.com (Douglas Rand)
- Date: Wed, 13 Jul 88 10:37:06 EST
- Cc: CommonLoops.pa@Xerox.COM
- Redistributed: CommonLoops.pa
In defs.lisp there should be a line:
(defvar *variable-declarations* nil)
Also the line:
#+:Lucid
(system::define-macro `(deftype ,name) expand-fn nil)
should be modified for Prime's Common LISP:
#+(and :Lucid (not prime))
(system::define-macro `(deftype ,name) expand-fn nil)
#+(and :Lucid Prime)
(eval `(deftype ,name () '(satisfies ,predicate)))
Cheers,
Doug