aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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."
449 ;; Record the group on the `current' list. 449 ;; Record the group on the `current' list.
450 (let ((elt (assoc load-file-name custom-current-group-alist))) 450 (let ((elt (assoc load-file-name custom-current-group-alist)))
451 (if elt (setcdr elt symbol) 451 (if elt (setcdr elt symbol)
452 (push (cons (purecopy load-file-name) symbol) 452 (push (cons load-file-name symbol) custom-current-group-alist)))
453 custom-current-group-alist)))
454 (run-hooks 'custom-define-hook) 453 (run-hooks 'custom-define-hook)
455 symbol) 454 symbol)
456 455