aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-07-18 16:04:01 +0000
committerJuanma Barranquero2002-07-18 16:04:01 +0000
commit5fe205f13437d4358a7c13a144ae07d2bec8a2bb (patch)
tree886f50918d74826e24a7ccf1ce7bd81d1a94430f
parentf33f4398d4697116ebbdb512c08bf497f6b49f10 (diff)
downloademacs-5fe205f13437d4358a7c13a144ae07d2bec8a2bb.tar.gz
emacs-5fe205f13437d4358a7c13a144ae07d2bec8a2bb.zip
(last-buffer): Add missing frame argument.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/bindings.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c0b46275170..c63da8750c3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12002-07-18 Juanma Barranquero <lektu@terra.es>
2
3 * bindings.el (last-buffer): Add missing frame argument.
4
12002-07-18 Richard M. Stallman <rms@gnu.org> 52002-07-18 Richard M. Stallman <rms@gnu.org>
2 6
3 * timer.el (timer-inc-time): Doc fix. 7 * timer.el (timer-inc-time): Doc fix.
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'.")
277Return the last non-hidden buffer in the buffer list." 277Return the last non-hidden buffer in the buffer list."
278 ;; This logic is more or less copied from bury-buffer, 278 ;; This logic is more or less copied from bury-buffer,
279 ;; except that we reverse the buffer list. 279 ;; except that we reverse the buffer list.
280 (let ((fbl (frame-parameter 'buffer-list)) 280 (let ((fbl (frame-parameter nil 'buffer-list))
281 (list (buffer-list)) 281 (list (buffer-list))
282 (pred (frame-parameter nil 'buffer-predicate)) 282 (pred (frame-parameter nil 'buffer-predicate))
283 found notsogood) 283 found notsogood)