diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-09 19:04:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-09 19:04:27 +0000 |
commit | 5e9cfecd7fbc6d2463e10c87bb4b1199aa5c1d5e (patch) | |
tree | 6129c162642d5125bc1ac8ebd2c532e4d188be87 | |
parent | 11395e81110338eb7f37a043d5b0bf1cbfac9cf2 (diff) | |
download | emacs-5e9cfecd7fbc6d2463e10c87bb4b1199aa5c1d5e.tar.gz |
(current-load-list): Set it to nil.
If have frames, load `faces'.
-rw-r--r-- | lisp/loadup.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 2f39713e6aa..ce81dbd1403 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -55,6 +55,8 @@ (load "frame") (load "mouse") (garbage-collect) + (load "faces") + (garbage-collect) (load "menu-bar") (load "scroll-bar") (load "select"))) @@ -166,6 +168,7 @@ ;by writing a site-init.el that loads them. ;See also "site-load" above. (load "site-init" t) +(setq current-load-list nil) (garbage-collect) ;;; At this point, we're ready to resume undo recording for scratch. |