From: Lars Magne Ingebrigtsen Date: Sat, 7 Jan 2012 05:57:57 +0000 (+0100) Subject: (with-selected-frame): Mention that the selected frame is restored. X-Git-Tag: emacs-pretest-24.0.93~97^2~55^2~8 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e5d086de65e6cab4bf68339381da1bac2d01583;p=emacs.git (with-selected-frame): Mention that the selected frame is restored. Fixes: debbugs:9980 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 430ac16841e..d0ab5d2f2f9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2012-01-07 Lars Magne Ingebrigtsen + * subr.el (with-selected-frame): Mention that the selected frame + is restored (bug#9980). + * ibuffer.el (ibuffer-mode): List the bindings in the corrent map (bug#9759). 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." "Execute the forms in BODY with FRAME as the selected frame. The value returned is the value of the last form in BODY. -This macro neither changes the order of recently selected windows -nor the buffer list." +This macro saves and restores the selected frame, and changes the +order of neither the recently selected windows nor the buffers in +the buffer list." (declare (indent 1) (debug t)) (let ((old-frame (make-symbol "old-frame")) (old-buffer (make-symbol "old-buffer")))