From: Richard M. Stallman Date: Sat, 27 Apr 2002 03:50:12 +0000 (+0000) Subject: Explicitly load cus-face and timer. X-Git-Tag: ttn-vms-21-2-B4~15369 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fad47d896a4094bd33a2e012232948161a4eb12;p=emacs.git Explicitly load cus-face and timer. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 17f3060d944..7721b87f3d1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -5,6 +5,12 @@ 2002-04-26 Richard M. Stallman + * loadup.el: Explicitly load cus-face and timer. + + * isearch.el: Don't require timer. + + * faces.el: Don't require cus-face. + * cus-edit.el (customize-face): Use read-face-name and handle multiple faces. (customize-face-other-window): Make it work similarly. diff --git a/lisp/loadup.el b/lisp/loadup.el index c107c2e41c1..e0cb78ef015 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -67,6 +67,7 @@ (load "simple") (load "files") +(load "cus-face") (load "faces") ; after here, `defface' may be used. (message "Lists of integers (garbage collection statistics) are normal output") @@ -134,6 +135,7 @@ (and (boundp 'x-toolkit-scroll-bars) (load "scroll-bar")) (load "select"))) +(load "timer") (load "isearch") (message "%s" (garbage-collect))