]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-declare-variable-list): Process already-declared
authorRichard M. Stallman <rms@gnu.org>
Sun, 20 Jul 1997 17:39:30 +0000 (17:39 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 20 Jul 1997 17:39:30 +0000 (17:39 +0000)
custom variables from this list.

lisp/custom.el

index 1d93305c22e7fbe950638929d4923868fdb4af07..b56c5af3aaf979d071634a9774cf9d0dae0905b7 100644 (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