[climacs-cvs] CVS climacs

rstrandh rstrandh at common-lisp.net
Sat Dec 15 07:22:51 UTC 2007


Update of /project/climacs/cvsroot/climacs
In directory clnet:/tmp/cvs-serv27849

Modified Files:
	gui.lisp 
Log Message:
Fixed a double negative.


--- /project/climacs/cvsroot/climacs/gui.lisp	2007/12/13 08:57:08	1.244
+++ /project/climacs/cvsroot/climacs/gui.lisp	2007/12/15 07:22:50	1.245
@@ -405,7 +405,7 @@
   "Return some view, any view, preferable one that is not
 currently displayed in any window."
   (or (find-if-not #'(lambda (view)
-                       (not (view-on-display *esa-instance* view)))
+                       (view-on-display *esa-instance* view))
                    (views *esa-instance*))
       (any-view)))
 




More information about the Climacs-cvs mailing list