[climacs-cvs] CVS update: climacs/buffer-test.lisp

Robert Strandh rstrandh at common-lisp.net
Sun Jan 16 06:03:37 UTC 2005


Update of /project/climacs/cvsroot/climacs
In directory common-lisp.net:/tmp/cvs-serv7449

Modified Files:
	buffer-test.lisp 
Log Message:
Added eval-when around use-package to avoid symbol conflicts
during loading.

Date: Sun Jan 16 07:03:36 2005
Author: rstrandh

Index: climacs/buffer-test.lisp
diff -u climacs/buffer-test.lisp:1.2 climacs/buffer-test.lisp:1.3
--- climacs/buffer-test.lisp:1.2	Sun Jan 16 01:41:44 2005
+++ climacs/buffer-test.lisp	Sun Jan 16 07:03:35 2005
@@ -4,8 +4,9 @@
 ;;; 
 
 (in-package :cl-user)
-(use-package :rtest)
-(use-package :climacs-buffer)
+(eval-when (:compile-toplevel :load-toplevel)
+  (use-package :rtest)
+  (use-package :climacs-buffer))
 
 (deftest standard-buffer-make-instance.test-1
   (let* ((buffer (make-instance 'standard-buffer))




More information about the Climacs-cvs mailing list