aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)