summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2015-04-21 21:30:54 -0400
committerGlenn Morris <rgm@gnu.org>2015-04-21 21:30:54 -0400
commit3f2c8b82649b670bdccfdc2235b3fb0b63a90d4c (patch)
tree43cb40093a7b36f4230935ef0bffa3e0600d6df6 /lisp/custom.el
parentb50f9bc9643cc53c583d010ce2c8c41e2d4d8d01 (diff)
downloademacs-3f2c8b82649b670bdccfdc2235b3fb0b63a90d4c.tar.gz
* 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.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index e5fe0ebaedd..ea5ab7a4773 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)