]> git.eshelyaron.com Git - emacs.git/commitdiff
(with-selected-frame): Mention that the selected frame is restored.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 7 Jan 2012 05:57:57 +0000 (06:57 +0100)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 7 Jan 2012 05:57:57 +0000 (06:57 +0100)
Fixes: debbugs:9980
lisp/ChangeLog
lisp/subr.el

index 430ac16841e804d85f35150125d848686d02290c..d0ab5d2f2f9e246b129187d1ab9ade302616e140 100644 (file)
@@ -1,5 +1,8 @@
 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * 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).
 
index 15665e4ee24469c3ab3e42df31c6335b9cffa376..14f9192405c34014e4c96c80fbc995c40251b605 100644 (file)
@@ -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")))