diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-07-18 16:04:01 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-07-18 16:04:01 +0000 |
commit | 5fe205f13437d4358a7c13a144ae07d2bec8a2bb (patch) | |
tree | 886f50918d74826e24a7ccf1ce7bd81d1a94430f /lisp/bindings.el | |
parent | f33f4398d4697116ebbdb512c08bf497f6b49f10 (diff) | |
download | emacs-5fe205f13437d4358a7c13a144ae07d2bec8a2bb.tar.gz |
(last-buffer): Add missing frame argument.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index ab606fa9cc4..10f84c94bac 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -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) |