Hi,
I've just run in to a small problem with cl-ppcre-1.2.12 and Lispworks 5.0 on
Windows. It appears that the conditionalised import for 'lw:with-unique-names
no longer has a compile-time effect which is resulting in some load errors.
I've attached a small patch which wraps the import in an eval-when.
Cheers,
Sean.
--- util.lisp 2006-08-03 12:41:22.000000000 +0200
+++ patched-util.lisp 2006-08-03 12:41:30.000000000 +0200
@@ -36,7 +36,8 @@
(in-package #:cl-ppcre)
#+:lispworks
-(import 'lw:with-unique-names)
+(eval-when (:compile-toplevel :load-toplevel :execute)
+ (import 'lw:with-unique-names))
#-:lispworks
(defmacro with-unique-names ((&rest bindings) &body body)