# HG changeset patch # User Richard M. Stallman # Date 1027004333 0 # Node ID a308cb6a79fd5479bca1a249de47ae6b54337d20 # Parent 25e7debccc642dda45b9a57718cd524c35217270 (last-buffer): Handle buffer-list and buffer-predicate frame parameters like bury-buffer. diff -r 25e7debccc64 -r a308cb6a79fd lisp/bindings.el --- a/lisp/bindings.el Thu Jul 18 14:57:46 2002 +0000 +++ b/lisp/bindings.el Thu Jul 18 14:58:53 2002 +0000 @@ -275,10 +275,26 @@ (defun last-buffer () "\ Return the last non-hidden buffer in the buffer list." - (let ((list (reverse (buffer-list)))) - (while (eq (aref (buffer-name (car list)) 0) ? ) - (setq list (cdr list))) - (car list))) + ;; This logic is more or less copied from bury-buffer, + ;; except that we reverse the buffer list. + (let ((fbl (frame-parameter 'buffer-list)) + (list (buffer-list)) + (pred (frame-parameter nil 'buffer-predicate)) + found notsogood) + ;; Merge the frame buffer list with the whole buffer list, + ;; and reverse it. + (dolist (buffer fbl) + (setq list (delq buffer list))) + (setq list (nreverse (append fbl list))) + (while (not found) + (unless (or (eq (aref (buffer-name (car list)) 0) ? ) + ;; If the selected frame has a buffer_predicate, + ;; disregard buffers that don't fit the predicate. + (and pred (not (funcall pred (car list))))) + (if (get-buffer-window (car list) 'visible) + (unless notsogood (setq notsogood (car list))) + (setq found (car list))))) + (or found notsogood))) (defun unbury-buffer () "\ Switch to the last buffer in the buffer list."