1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(last-buffer): Add missing frame argument.

This commit is contained in:
Juanma Barranquero 2002-07-18 16:04:01 +00:00
parent f33f4398d4
commit 5fe205f134
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-07-18 Juanma Barranquero <lektu@terra.es>
* bindings.el (last-buffer): Add missing frame argument.
2002-07-18 Richard M. Stallman <rms@gnu.org>
* timer.el (timer-inc-time): Doc fix.

View file

@ -277,7 +277,7 @@ Keymap for what is displayed by `mode-line-buffer-identification'.")
Return the last non-hidden buffer in the buffer list."
;; This logic is more or less copied from bury-buffer,
;; except that we reverse the buffer list.
(let ((fbl (frame-parameter 'buffer-list))
(let ((fbl (frame-parameter nil 'buffer-list))
(list (buffer-list))
(pred (frame-parameter nil 'buffer-predicate))
found notsogood)