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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/custom.el [lexbind]
Date: Tue, 14 Oct 2003 19:51:42 -0400

Index: emacs/lisp/custom.el
diff -c emacs/lisp/custom.el:1.53.2.1 emacs/lisp/custom.el:1.53.2.2
*** emacs/lisp/custom.el:1.53.2.1       Fri Apr  4 01:20:01 2003
--- emacs/lisp/custom.el        Tue Oct 14 19:50:53 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.
***************
*** 1063,1066 ****
--- 1071,1075 ----
  
  (provide 'custom)
  
+ ;;; arch-tag: 041b6116-aabe-4f9a-902d-74092bc3dab2
  ;;; custom.el ends here




reply via email to

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