summaryrefslogtreecommitdiff
path: root/lisp/bs.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-10 01:36:05 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-10 01:36:05 +0000
commitedf6fbc5f7f2dd9bf329477fd81e2c97b1cbb86c (patch)
tree307322c9dbf8022150fa30310bb1cfd2ee628ddb /lisp/bs.el
parent52f9b7513ffbfe49e0ddbe24ecef816e1a134860 (diff)
downloademacs-edf6fbc5f7f2dd9bf329477fd81e2c97b1cbb86c.tar.gz
(bs--window-for-buffer): Remove.
(bs--show-with-configuration): Use `get-window-with-predicate' instead of `bs--window-for-buffer'.
Diffstat (limited to 'lisp/bs.el')
-rw-r--r--lisp/bs.el17
1 files changed, 4 insertions, 13 deletions
diff --git a/lisp/bs.el b/lisp/bs.el
index cf6ca0c2de3..d0b929b2d85 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -692,17 +692,6 @@ Refresh whole Buffer Selection Menu."
(interactive)
(bs--redisplay t))
-(defun bs--window-for-buffer (buffer-name)
- "Return a window showing a buffer with name BUFFER-NAME.
-Take only windows of current frame into account.
-Return nil if there is no such buffer."
- (catch 'window
- (walk-windows (lambda (w)
- (when (string= (buffer-name (window-buffer w))
- buffer-name)
- (throw 'window w))))
- nil))
-
(defun bs--set-window-height ()
"Change the height of the selected window to suit the current buffer list."
(unless (one-window-p t)
@@ -1241,7 +1230,6 @@ by buffer configuration `bs-cycle-configuration-name'."
(or (cdr bs--cycle-list)
"this buffer"))))))
-
;;;###autoload
(defun bs-cycle-previous ()
"Select previous buffer defined by buffer cycling.
@@ -1435,7 +1423,10 @@ for buffer selection."
;; we have to set the buffer we started the command
(setq bs--buffer-coming-from (current-buffer)))
(let ((liste (bs-buffer-list))
- (active-window (bs--window-for-buffer "*buffer-selection*")))
+ (active-window (get-window-with-predicate
+ (lambda (w)
+ (string= (buffer-name (window-buffer w))
+ "*buffer-selection*")))))
(if active-window
(select-window active-window)
(modify-frame-parameters nil