diff options
| author | Deniz Dogan | 2011-06-04 17:13:11 +0200 |
|---|---|---|
| committer | Deniz Dogan | 2011-06-04 17:13:11 +0200 |
| commit | ade1b01cb499c25ff51007a9acd3d992fca53164 (patch) | |
| tree | 9c0a26e3c412b46f821d35d6e1e27ccd46d4119c | |
| parent | 0c33dd17ea626c04fd26aa1358f1def2b6e072d5 (diff) | |
| download | emacs-ade1b01cb499c25ff51007a9acd3d992fca53164.tar.gz emacs-ade1b01cb499c25ff51007a9acd3d992fca53164.zip | |
Fix mistake in last iswitchb.el bug fix.
| -rw-r--r-- | lisp/iswitchb.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index c782295c794..70dda5442d5 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el | |||
| @@ -1119,7 +1119,7 @@ If BUFFER is visible in the current frame, return nil." | |||
| 1119 | (interactive) | 1119 | (interactive) |
| 1120 | (let ((blist (iswitchb-get-buffers-in-frames 'current))) | 1120 | (let ((blist (iswitchb-get-buffers-in-frames 'current))) |
| 1121 | ;; If the buffer is visible in current frame, return nil | 1121 | ;; If the buffer is visible in current frame, return nil |
| 1122 | (when (member buffer blist) | 1122 | (unless (member buffer blist) |
| 1123 | ;; maybe in other frame or icon | 1123 | ;; maybe in other frame or icon |
| 1124 | (get-buffer-window buffer 0) ; better than 'visible | 1124 | (get-buffer-window buffer 0) ; better than 'visible |
| 1125 | ))) | 1125 | ))) |