comparison lisp/loadup.el @ 90261:7beb78bc1f8e

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 616-696) - Add lisp/mh-e/.arch-inventory - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords. - lisp/gnus/ChangeLog: Remove duplicate entry * gnus--rel--5.10 (patch 147-181) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS: texi/message.texi: Fix default values. - Update from CVS: texi/gnus.texi (RSS): Addition.
author Miles Bader <miles@gnu.org>
date Mon, 16 Jan 2006 08:37:27 +0000
parents 2d92f5c9d6ae 3964a8b287a0
children c5406394f567
comparison
equal deleted inserted replaced
90260:0ca0d9181b5e 90261:7beb78bc1f8e
122 (load "indent") 122 (load "indent")
123 (load "window") 123 (load "window")
124 (load "frame") 124 (load "frame")
125 (load "term/tty-colors") 125 (load "term/tty-colors")
126 (load "font-core") 126 (load "font-core")
127 127 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
128 (if (fboundp 'frame-face-alist) 128 ;; needs to be defined when font-lock is loaded.
129 (progn 129 (load "facemenu")
130 (load "facemenu"))) 130 (load "emacs-lisp/syntax")
131 (load "font-lock")
132 (load "jit-lock")
133
131 (if (fboundp 'track-mouse) 134 (if (fboundp 'track-mouse)
132 (progn 135 (progn
133 (load "mouse") 136 (load "mouse")
134 (and (boundp 'x-toolkit-scroll-bars) 137 (and (boundp 'x-toolkit-scroll-bars)
135 (load "scroll-bar")) 138 (load "scroll-bar"))
136 (load "select"))) 139 (load "select")))
137 (load "emacs-lisp/timer") 140 (load "emacs-lisp/timer")
138 (load "isearch") 141 (load "isearch")
142 (load "rfn-eshadow")
139 143
140 (message "%s" (garbage-collect)) 144 (message "%s" (garbage-collect))
141 (load "menu-bar") 145 (load "menu-bar")
142 (load "paths.el") ;Don't get confused if someone compiled paths by mistake. 146 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
143 (load "startup") 147 (load "startup")
154 (if (eq system-type 'vax-vms) 158 (if (eq system-type 'vax-vms)
155 (progn 159 (progn
156 (load "vmsproc"))) 160 (load "vmsproc")))
157 (load "abbrev") 161 (load "abbrev")
158 (load "buff-menu") 162 (load "buff-menu")
163
164 (if (fboundp 'x-create-frame)
165 (progn
166 (load "image")
167 (load "international/fontset")
168 (load "dnd")
169 (load "mwheel")
170 (load "tool-bar")))
171 (if (featurep 'x)
172 (load "x-dnd"))
173 (message "%s" (garbage-collect))
174
159 (if (eq system-type 'vax-vms) 175 (if (eq system-type 'vax-vms)
160 (progn 176 (progn
161 (load "vms-patch"))) 177 (load "vms-patch")))
162 (if (eq system-type 'windows-nt) 178 (if (eq system-type 'windows-nt)
163 (progn 179 (progn
185 201
186 (load "vc-hooks") 202 (load "vc-hooks")
187 (load "jka-cmpr-hook") 203 (load "jka-cmpr-hook")
188 (load "ediff-hook") 204 (load "ediff-hook")
189 (if (fboundp 'x-show-tip) (load "tooltip")) 205 (if (fboundp 'x-show-tip) (load "tooltip"))
206
190 (message "%s" (garbage-collect)) 207 (message "%s" (garbage-collect))
191 208
192 ;If you want additional libraries to be preloaded and their 209 ;If you want additional libraries to be preloaded and their
193 ;doc strings kept in the DOC file rather than in core, 210 ;doc strings kept in the DOC file rather than in core,
194 ;you may load them with a "site-load.el" file. 211 ;you may load them with a "site-load.el" file.