emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109970: lisp/custom.el (custom-theme


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109970: lisp/custom.el (custom-theme-load-confirm): Remove unneeded assignment.
Date: Mon, 10 Sep 2012 17:52:15 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109970
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2012-09-10 17:52:15 +0200
message:
  lisp/custom.el (custom-theme-load-confirm): Remove unneeded assignment.
modified:
  lisp/ChangeLog
  lisp/custom.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-09-10 14:40:13 +0000
+++ b/lisp/ChangeLog    2012-09-10 15:52:15 +0000
@@ -1,3 +1,7 @@
+2012-09-10  Juanma Barranquero  <address@hidden>
+
+       * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
+
 2012-09-10  Dan Nicolaescu  <address@hidden>
 
        * vc/diff-mode.el (diff-mode-menu): Bind

=== modified file 'lisp/custom.el'
--- a/lisp/custom.el    2012-09-09 06:43:47 +0000
+++ b/lisp/custom.el    2012-09-10 15:52:15 +0000
@@ -1227,7 +1227,7 @@
     (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'.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]