From: Martin Rudalics Date: Mon, 13 Aug 2012 07:25:30 +0000 (+0200) Subject: Fix last change to with-selected-window. X-Git-Tag: emacs-24.2.90~709 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35cb9c06f75e1d682663fd79ff78b7adac182437;p=emacs.git Fix last change to with-selected-window. * subr.el (with-selected-window): Fix last change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d57c3f8b61a..79ea1e0bdd4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-08-13 Martin Rudalics + + * subr.el (with-selected-window): Fix last change. + 2012-08-12 Stefan Monnier * subr.el (internal--before-with-seleted-window) diff --git a/lisp/subr.el b/lisp/subr.el index 34c0a780930..2fd322dc77e 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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.