aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-07-09 19:04:27 +0000
committerRichard M. Stallman1994-07-09 19:04:27 +0000
commit95227eb203372118f4e9d1318c3c003807f28cd8 (patch)
tree60e063c63cee88aa2c206d487f21535d6408fc78
parentca986694dd42174722bd56965af7bba854af9ef3 (diff)
downloademacs-95227eb203372118f4e9d1318c3c003807f28cd8.tar.gz
emacs-95227eb203372118f4e9d1318c3c003807f28cd8.zip
(current-load-list): Set it to nil.
If have frames, load `faces'.
-rw-r--r--lisp/loadup.el3
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 @@
55 (load "frame") 55 (load "frame")
56 (load "mouse") 56 (load "mouse")
57 (garbage-collect) 57 (garbage-collect)
58 (load "faces")
59 (garbage-collect)
58 (load "menu-bar") 60 (load "menu-bar")
59 (load "scroll-bar") 61 (load "scroll-bar")
60 (load "select"))) 62 (load "select")))
@@ -166,6 +168,7 @@
166;by writing a site-init.el that loads them. 168;by writing a site-init.el that loads them.
167;See also "site-load" above. 169;See also "site-load" above.
168(load "site-init" t) 170(load "site-init" t)
171(setq current-load-list nil)
169(garbage-collect) 172(garbage-collect)
170 173
171;;; At this point, we're ready to resume undo recording for scratch. 174;;; At this point, we're ready to resume undo recording for scratch.