emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104489: Fix mistake in last iswitchb


From: Deniz Dogan
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104489: Fix mistake in last iswitchb.el bug fix.
Date: Sat, 04 Jun 2011 17:13:11 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104489
committer: Deniz Dogan <address@hidden>
branch nick: emacs-trunk
timestamp: Sat 2011-06-04 17:13:11 +0200
message:
  Fix mistake in last iswitchb.el bug fix.
modified:
  lisp/iswitchb.el
=== modified file 'lisp/iswitchb.el'
--- a/lisp/iswitchb.el  2011-06-04 11:02:37 +0000
+++ b/lisp/iswitchb.el  2011-06-04 15:13:11 +0000
@@ -1119,7 +1119,7 @@
   (interactive)
   (let ((blist (iswitchb-get-buffers-in-frames 'current)))
     ;; If the buffer is visible in current frame, return nil
-    (when (member buffer blist)
+    (unless (member buffer blist)
       ;; maybe in other frame or icon
       (get-buffer-window buffer 0) ; better than 'visible
       )))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]