emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 3f2c8b8: * lisp/custom.el (custom-declare-group): N


From: Glenn Morris
Subject: [Emacs-diffs] master 3f2c8b8: * lisp/custom.el (custom-declare-group): No need to purecopy
Date: Wed, 22 Apr 2015 01:30:58 +0000

branch: master
commit 3f2c8b82649b670bdccfdc2235b3fb0b63a90d4c
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * lisp/custom.el (custom-declare-group): No need to purecopy
    
    custom-current-group-alist members following recent change to set
    it to nil before dumping.
---
 lisp/custom.el |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/lisp/custom.el b/lisp/custom.el
index e5fe0eb..ea5ab7a 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -449,8 +449,7 @@ information."
   ;; Record the group on the `current' list.
   (let ((elt (assoc load-file-name custom-current-group-alist)))
     (if elt (setcdr elt symbol)
-      (push (cons (purecopy load-file-name) symbol)
-           custom-current-group-alist)))
+      (push (cons load-file-name symbol) custom-current-group-alist)))
   (run-hooks 'custom-define-hook)
   symbol)
 



reply via email to

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