]> git.eshelyaron.com Git - emacs.git/commitdiff
(with-selected-window): Add closing paren.
authorJohn Paul Wallington <jpw@pobox.com>
Mon, 21 Jul 2003 18:06:33 +0000 (18:06 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Mon, 21 Jul 2003 18:06:33 +0000 (18:06 +0000)
lisp/ChangeLog
lisp/subr.el

index fe1fbd4341ccfedf5ac1718de7fccae40cb800ad..5cdad6ccb6f81eb8bedbeedcde80f1043c03b47c 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-21  John Paul Wallington  <jpw@gnu.org>
+
+       * subr.el (with-selected-window): Add closing paren.
+
 2003-07-21  Richard M. Stallman  <rms@gnu.org>
 
        * emacs-lisp/lisp-mode.el (emacs-lisp-mode): Use run-mode-hooks.
index 702a960ca41eee3997b64500537bb1b4b2cd0f69..67b9360f077bb94728e2e75350f93cbe2582b644 100644 (file)
@@ -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.