(custom-declare-variable-list): Process already-declared

custom variables from this list.
This commit is contained in:
Richard M. Stallman 1997-07-20 17:39:30 +00:00
parent 5fe16cc40f
commit a7d6bdac9f

View file

@ -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