diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/subr.el | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 430ac16841e..d0ab5d2f2f9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1 | 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 2 | ||
| 3 | * subr.el (with-selected-frame): Mention that the selected frame | ||
| 4 | is restored (bug#9980). | ||
| 5 | |||
| 3 | * ibuffer.el (ibuffer-mode): List the bindings in the corrent map | 6 | * ibuffer.el (ibuffer-mode): List the bindings in the corrent map |
| 4 | (bug#9759). | 7 | (bug#9759). |
| 5 | 8 | ||
diff --git a/lisp/subr.el b/lisp/subr.el index 15665e4ee24..14f9192405c 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -2983,8 +2983,9 @@ the buffer list ordering." | |||
| 2983 | "Execute the forms in BODY with FRAME as the selected frame. | 2983 | "Execute the forms in BODY with FRAME as the selected frame. |
| 2984 | The value returned is the value of the last form in BODY. | 2984 | The value returned is the value of the last form in BODY. |
| 2985 | 2985 | ||
| 2986 | This macro neither changes the order of recently selected windows | 2986 | This macro saves and restores the selected frame, and changes the |
| 2987 | nor the buffer list." | 2987 | order of neither the recently selected windows nor the buffers in |
| 2988 | the buffer list." | ||
| 2988 | (declare (indent 1) (debug t)) | 2989 | (declare (indent 1) (debug t)) |
| 2989 | (let ((old-frame (make-symbol "old-frame")) | 2990 | (let ((old-frame (make-symbol "old-frame")) |
| 2990 | (old-buffer (make-symbol "old-buffer"))) | 2991 | (old-buffer (make-symbol "old-buffer"))) |