]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/custom.el (custom-theme-load-confirm): Remove unneeded assignment.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 10 Sep 2012 15:52:15 +0000 (17:52 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 10 Sep 2012 15:52:15 +0000 (17:52 +0200)
lisp/ChangeLog
lisp/custom.el

index 47471f508f036363bf9121e727326f6178cb8983..0f1b744f427427b3adc55e22fa0814b1c09e5a48 100644 (file)
@@ -1,3 +1,7 @@
+2012-09-10  Juanma Barranquero  <lekktu@gmail.com>
+
+       * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
+
 2012-09-10  Dan Nicolaescu  <dann@gnu.org>
 
        * vc/diff-mode.el (diff-mode-menu): Bind
index 3eb2895888d601bbffb7296aa669b6b1e3fbbfcd..1f0729cfd971d00224960a80f4cc1a9f042a31bf 100644 (file)
@@ -1227,7 +1227,7 @@ query also about adding HASH to `custom-safe-themes'."
     (save-window-excursion
       (rename-buffer "*Custom Theme*" t)
       (emacs-lisp-mode)
-      (setq window (pop-to-buffer (current-buffer)))
+      (pop-to-buffer (current-buffer))
       (goto-char (point-min))
       (prog1 (when (y-or-n-p "Loading a theme can run Lisp code.  Really load? ")
               ;; Offer to save to `custom-safe-themes'.