aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-20 17:39:30 +0000
committerRichard M. Stallman1997-07-20 17:39:30 +0000
commita7d6bdac9f6adb2727f761cd6a4b61b18e10b141 (patch)
tree0c75d36ec5f5aa05c80e46794cf6e732473e23c0 /lisp
parent5fe16cc40f345322a5572aa87b3e59f32863b804 (diff)
downloademacs-a7d6bdac9f6adb2727f761cd6a4b61b18e10b141.tar.gz
emacs-a7d6bdac9f6adb2727f761cd6a4b61b18e10b141.zip
(custom-declare-variable-list): Process already-declared
custom variables from this list.
Diffstat (limited to 'lisp')
-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."
394 394
395;;; The End. 395;;; The End.
396 396
397;; Process the defcustoms for variables loaded before this file.
398(while custom-declare-variable-list
399 (apply 'custom-declare-variable (car custom-declare-variable-list))
400 (setq custom-declare-variable-list (cdr custom-declare-variable-list)))
401
397(provide 'custom) 402(provide 'custom)
398 403
399;; custom.el ends here 404;; custom.el ends here