Mercurial > emacs
changeset 18882:539611251037
(custom-declare-variable-list): Process already-declared
custom variables from this list.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 20 Jul 1997 17:39:30 +0000 |
parents | e315e4e6d40b |
children | f7e3c766f54c |
files | lisp/custom.el |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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