diff options
| author | Juanma Barranquero | 2002-07-18 16:04:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-18 16:04:01 +0000 |
| commit | 5fe205f13437d4358a7c13a144ae07d2bec8a2bb (patch) | |
| tree | 886f50918d74826e24a7ccf1ce7bd81d1a94430f | |
| parent | f33f4398d4697116ebbdb512c08bf497f6b49f10 (diff) | |
| download | emacs-5fe205f13437d4358a7c13a144ae07d2bec8a2bb.tar.gz emacs-5fe205f13437d4358a7c13a144ae07d2bec8a2bb.zip | |
(last-buffer): Add missing frame argument.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/bindings.el | 2 |
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 @@ | |||
| 1 | 2002-07-18 Juanma Barranquero <lektu@terra.es> | ||
| 2 | |||
| 3 | * bindings.el (last-buffer): Add missing frame argument. | ||
| 4 | |||
| 1 | 2002-07-18 Richard M. Stallman <rms@gnu.org> | 5 | 2002-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'.") | |||
| 277 | Return the last non-hidden buffer in the buffer list." | 277 | Return 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) |