1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

Fix last change to with-selected-window.

* subr.el (with-selected-window): Fix last change.
This commit is contained in:
Martin Rudalics 2012-08-13 09:25:30 +02:00
parent 7864a3f729
commit 35cb9c06f7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-08-13 Martin Rudalics <rudalics@gmx.at>
* subr.el (with-selected-window): Fix last change.
2012-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
* subr.el (internal--before-with-seleted-window)

View File

@ -3070,7 +3070,7 @@ the buffer list ordering."
(unwind-protect
(progn (select-window (car save-selected-window--state) 'norecord)
,@body)
(internal--before-with-seleted-window save-selected-window--state)))))
(internal--after-with-seleted-window save-selected-window--state)))))
(defmacro with-selected-frame (frame &rest body)
"Execute the forms in BODY with FRAME as the selected frame.