Skip to content

Commit

Permalink
(custom-declare-variable-list): Process already-declared
Browse files Browse the repository at this point in the history
custom variables from this list.
  • Loading branch information
Richard M. Stallman committed Jul 20, 1997
1 parent 47d79be commit d748597
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lisp/custom.el
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,11 @@ the default value for the SYMBOL."

;;; The End.

;; Process the defcustoms for variables loaded before this file.
(while custom-declare-variable-list
(apply 'custom-declare-variable (car custom-declare-variable-list))
(setq custom-declare-variable-list (cdr custom-declare-variable-list)))

(provide 'custom)

;; custom.el ends here

0 comments on commit d748597

Please sign in to comment.