mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-30 11:09:23 +00:00
* 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.
This commit is contained in:
parent
b50f9bc964
commit
3f2c8b8264
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user