summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-20 17:39:30 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-20 17:39:30 +0000
commita7d6bdac9f6adb2727f761cd6a4b61b18e10b141 (patch)
tree0c75d36ec5f5aa05c80e46794cf6e732473e23c0
parent5fe16cc40f345322a5572aa87b3e59f32863b804 (diff)
downloademacs-a7d6bdac9f6adb2727f761cd6a4b61b18e10b141.tar.gz
(custom-declare-variable-list): Process already-declared
custom variables from this list.
-rw-r--r--lisp/custom.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index 1d93305c22e..b56c5af3aaf 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -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