# HG changeset patch # User Richard M. Stallman # Date 869420370 0 # Node ID 539611251037863bf7641543afdaf6e026a561ba # Parent e315e4e6d40b1292ae8ffd2bd959e0ec6719e269 (custom-declare-variable-list): Process already-declared custom variables from this list. diff -r e315e4e6d40b -r 539611251037 lisp/custom.el --- a/lisp/custom.el Sun Jul 20 17:37:56 1997 +0000 +++ b/lisp/custom.el Sun Jul 20 17:39:30 1997 +0000 @@ -394,6 +394,11 @@ ;;; 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