]> git.eshelyaron.com Git - emacs.git/commitdiff
(last-buffer): Add missing frame argument.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 18 Jul 2002 16:04:01 +0000 (16:04 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 18 Jul 2002 16:04:01 +0000 (16:04 +0000)
lisp/ChangeLog
lisp/bindings.el

index c0b462751708828d6f5579f8d513ec4bb8c6efef..c63da8750c3a58cdcbe6b491a7117cc5ab4e9a50 100644 (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.
index ab606fa9cc4b7209eaf00ff47aefa3e037167cb3..10f84c94bac8bc8002567de8127564f64ebd20b3 100644 (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)