From a7d6bdac9f6adb2727f761cd6a4b61b18e10b141 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 20 Jul 1997 17:39:30 +0000 Subject: [PATCH] (custom-declare-variable-list): Process already-declared custom variables from this list. --- lisp/custom.el | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.39.2