emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/custom.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/custom.el
Date: Sat, 16 Aug 2003 20:17:16 -0400

Index: emacs/lisp/custom.el
diff -c emacs/lisp/custom.el:1.66 emacs/lisp/custom.el:1.67
*** emacs/lisp/custom.el:1.66   Thu Mar 13 13:10:41 2003
--- emacs/lisp/custom.el        Sat Aug 16 20:17:16 2003
***************
*** 502,507 ****
--- 502,515 ----
    "Load all dependencies for SYMBOL."
    (unless custom-load-recursion
      (let ((custom-load-recursion t))
+       ;; Load these files if not already done,
+       ;; to make sure we know all the dependencies of SYMBOL.
+       (condition-case nil
+         (require 'cus-load)
+       (error nil))
+       (condition-case nil
+         (require 'cus-start)
+       (error nil))
        (dolist (load (get symbol 'custom-loads))
        (cond ((symbolp load) (condition-case nil (require load) (error nil)))
              ;; This is subsumed by the test below, but it's much faster.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]