From: Glenn Morris Date: Wed, 22 Apr 2015 01:30:54 +0000 (-0400) Subject: * lisp/custom.el (custom-declare-group): No need to purecopy X-Git-Tag: emacs-25.0.90~2339 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/3f2c8b82649b670bdccfdc2235b3fb0b63a90d4c * 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. --- diff --git a/lisp/custom.el b/lisp/custom.el index e5fe0ebaed..ea5ab7a477 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)