From: John Paul Wallington Date: Mon, 21 Jul 2003 18:06:33 +0000 (+0000) Subject: (with-selected-window): Add closing paren. X-Git-Tag: ttn-vms-21-2-B4~9286 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec589b784a03ee7f6a36f871e35e41e0adedf909;p=emacs.git (with-selected-window): Add closing paren. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fe1fbd4341c..5cdad6ccb6f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-07-21 John Paul Wallington + + * subr.el (with-selected-window): Add closing paren. + 2003-07-21 Richard M. Stallman * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks. diff --git a/lisp/subr.el b/lisp/subr.el index 702a960ca41..67b9360f077 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1639,7 +1639,7 @@ See also `with-temp-buffer'." (set-frame-selected-window (car elt) (cadr elt)))) (if (window-live-p save-selected-window-window) ;; This is where the code differs from save-selected-window. - (select-window save-selected-window-window 'norecord)))) + (select-window save-selected-window-window 'norecord))))) (defmacro with-temp-file (file &rest body) "Create a new buffer, evaluate BODY there, and write the buffer to FILE.