git.fiddlerwoaroof.com
Browse code

Fix compat.lisp compilation

Orivej Desh authored on 10/02/2012 11:54:53
Showing 1 changed files
... ...
@@ -1,5 +1,6 @@
1 1
 #+sbcl
2
-(require '#:sb-simple-streams)
2
+(eval-when (:compile-toplevel :load-toplevel :execute)
3
+  (require '#:sb-simple-streams))
3 4
 
4 5
 (rename-package 'acl-compat.mp 'acl-compat.mp
5 6
                 (union '(mp) (package-nicknames 'acl-compat.mp)))
... ...
@@ -17,7 +18,7 @@
17 18
 #+sbcl
18 19
 (import 'sb-simple-streams:read-sequence)
19 20
 
20
-(in-package #:excl)
21
+(in-package #:acl-compat.excl)
21 22
 ;; From PJB's cesarum.utility
22 23
 (defmacro while (condition &body body)
23 24
   "While loop."