217
|
1 (setq preloaded-file-list
|
|
2 '("backquote" ; needed for defsubst etc.
|
|
3 "bytecomp-runtime" ; define defsubst
|
|
4 "packages" ; Bootstrap run-time lisp environment
|
|
5 "subr" ; load the most basic Lisp functions
|
|
6 "replace" ; match-string used in version.el.
|
239
|
7 ; Ignore compiled-by-mistake version.elc
|
253
|
8 "version.el"
|
217
|
9 "cl"
|
|
10 "cl-extra"
|
|
11 "cl-seq"
|
|
12 "widget"
|
|
13 "custom" ; Before the world so everything can be
|
|
14 ; customized
|
|
15 "cus-start" ; for customization of builtin variables
|
|
16 "cmdloop"
|
|
17 "keymap"
|
|
18 "syntax"
|
|
19 "device"
|
|
20 "console"
|
|
21 "obsolete"
|
|
22 "specifier"
|
|
23 "faces" ; must be loaded before any make-face call
|
|
24 ;;(load-gc "facemenu") #### not yet ported
|
|
25 "glyphs"
|
|
26 "objects"
|
|
27 "extents"
|
|
28 "events"
|
|
29 "text-props"
|
|
30 "process"
|
|
31 "frame" ; move up here cause some stuff needs it here
|
|
32 "map-ynp"
|
|
33 "simple"
|
|
34 "keydefs" ; Before loaddefs so that keymap vars exist.
|
|
35 "abbrev"
|
|
36 "derived"
|
|
37 "minibuf"
|
|
38 "list-mode"
|
|
39 "modeline" ; needs simple.el to be loaded first
|
|
40 ;; If SparcWorks support is included some additional packages are
|
|
41 ;; dumped which would normally have autoloads. To avoid
|
|
42 ;; duplicate doc string warnings, SparcWorks uses a separate
|
|
43 ;; autoloads file with the dumped packages removed.
|
|
44 ;; After fixing, eos/loaddefs-eos and loaddefs appear identical?!!
|
|
45 ;; So just make loaddefs-eos go away...
|
|
46 ;;(load-gc (if (featurep 'sparcworks) "eos/loaddefs-eos" "loaddefs"))
|
|
47 "startup" ; For initialization of
|
|
48 ; `emacs-user-extension-dir'
|
|
49 "misc"
|
|
50 ;; (load-gc "profile")
|
|
51 #-mule "help-nomule"
|
|
52 "help"
|
|
53 ;; (load-gc "hyper-apropos") Soon...
|
|
54 #-mule "files-nomule"
|
|
55 "files"
|
239
|
56 #-infodock "lib-complete" ; InfoDock uses an older version
|
217
|
57 "format"
|
|
58 "indent"
|
|
59 "isearch-mode"
|
|
60 "buffer"
|
|
61 "buff-menu"
|
|
62 "undo-stack"
|
|
63 "window"
|
|
64 "window-xemacs"
|
|
65 "paths.el" ; don't get confused if paths compiled.
|
|
66 "lisp"
|
|
67 "page"
|
|
68 "register"
|
|
69 "iso8859-1" ; This must be before any modes
|
|
70 ; (sets standard syntax table.)
|
|
71 "paragraphs"
|
|
72 "easymenu" ; Added for 20.3.
|
|
73 "lisp-mode"
|
|
74 "text-mode"
|
|
75 "fill"
|
|
76 "auto-save" ; Added for 20.4
|
|
77
|
|
78 #+windows-nt "winnt"
|
|
79 #+lisp-float-type "float-sup"
|
|
80 "itimer" ; for vars auto-save-timeout and
|
|
81 ; auto-gc-threshold
|
|
82 "itimer-autosave"
|
|
83 #+toolbar "toolbar"
|
|
84 #+scrollbar "scrollbar"
|
|
85 #+menubar "menubar"
|
|
86 #+dialog "dialog"
|
|
87 #+mule "mule-charset"
|
|
88 #+mule "mule-coding"
|
|
89 ;; Handle I/O of files with extended characters.
|
|
90 #+mule "mule-files"
|
|
91 ;; Handle process with encoding/decoding non-ascii coding-system.
|
|
92 #+mule "mule-process"
|
|
93 #+mule "mule-help"
|
|
94 ;; Load the remaining basic files.
|
|
95 #+mule "mule-category"
|
|
96 #+mule "mule-ccl"
|
|
97 #+mule "mule-misc"
|
|
98 #+mule "kinsoku"
|
|
99 #+(and mule x) "mule-x-init"
|
|
100 #+mule "mule-cmds" ; to sync with Emacs 20.1
|
|
101
|
|
102 ;; after this goes the specific lisp routines for a particular input system
|
|
103 ;; 97.2.5 JHod Shouldn't these go into a site-load file to allow site
|
|
104 ;; or user switching of input systems???
|
|
105 ;(if (featurep 'wnn)
|
|
106 ; (progn
|
|
107 ; (load-gc "egg")
|
|
108 ; (load-gc "egg-wnn")
|
|
109 ; (setq egg-default-startup-file "eggrc-wnn")))
|
|
110
|
|
111 ;; (if (and (boundp 'CANNA) CANNA)
|
|
112 ;; (load-gc "canna")
|
|
113 ;; )
|
|
114
|
|
115 ;; Now load files to set up all the different languages/environments
|
|
116 ;; that Mule knows about.
|
|
117
|
227
|
118 #+mule "arabic"
|
|
119 #+mule "chinese"
|
|
120 #+mule "cyrillic"
|
|
121 #+mule "english"
|
|
122 ;; #+mule "ethiopic"
|
|
123 #+mule "european"
|
|
124 #+mule "greek"
|
|
125 #+mule "hebrew"
|
|
126 #+mule "japanese"
|
|
127 #+mule "korean"
|
|
128 #+mule "misc-lang"
|
|
129 ;; #+mule "thai"
|
|
130 #+mule "viet-chars"
|
|
131 ;; #+mule "vietnamese"
|
217
|
132
|
|
133 ;; Specialized language support
|
|
134 #+(and mule CANNA) "canna-leim"
|
227
|
135 ;; Egg/Its is now a package with its own dumped-lisp.el file
|
|
136 ; #+(and mule wnn) "egg-leim"
|
|
137 ; #+(and mule wnn) "egg-kwnn-leim"
|
|
138 ; #+(and mule wnn) "egg-cwnn-leim"
|
|
139 ; #+mule "egg-sj3-leim"
|
|
140 ;; SKK is now a package with its own dumped-lisp.el file
|
|
141 ; #+mule "skk-leim"
|
217
|
142
|
|
143 ;; Set up the XEmacs environment for Mule.
|
|
144 ;; Assumes the existence of various stuff above.
|
|
145 #+mule "mule-init"
|
|
146
|
|
147 ;; Enable Mule capability for Gnus, mail, etc...
|
|
148 ;; Moved to sunpro-load.el - the default only for Sun.
|
|
149 ;;(load-gc "mime-setup")
|
|
150 ;;; mule-load.el ends here
|
|
151 #+window-system "gui"
|
|
152 #+window-system "mode-motion"
|
|
153 #+window-system "mouse"
|
|
154 ;; preload the X code, for faster startup.
|
231
|
155 #+(and (not infodock) (or x mswindows) menubar) "x-menubar"
|
239
|
156 #+(and infodock (or x mswindows) menubar) "id-menus"
|
217
|
157 #+x "x-faces"
|
|
158 #+x "x-iso8859-1"
|
|
159 #+x "x-mouse"
|
|
160 #+x "x-select"
|
|
161 #+(and x scrollbar) "x-scrollbar"
|
|
162 #+x "x-misc"
|
|
163 #+x "x-init"
|
239
|
164 #+(and (not infodock) x toolbar) "x-toolbar"
|
229
|
165 #+x "x-win-xfree86"
|
|
166 #+x "x-win-sun"
|
217
|
167 ;; preload the mswindows code.
|
|
168 #+mswindows "msw-faces"
|
|
169 #+mswindows "msw-init"
|
221
|
170 #+mswindows "msw-select"
|
217
|
171 ;; preload the TTY init code.
|
|
172 #+tty "tty-init"
|
|
173 ;;; Formerly in tooltalk/tooltalk-load.el
|
237
|
174 ;; Moved to tooltalk package
|
|
175 ;; #+tooltalk "tooltalk-macros"
|
|
176 ;; #+tooltalk "tooltalk-util"
|
|
177 ;; #+tooltalk "tooltalk-init"
|
217
|
178 ;; "vc-hooks" ; Packaged. Available in two versions.
|
|
179 ;; "ediff-hook" ; Packaged.
|
|
180 "fontl-hooks"
|
|
181 "auto-show"
|
|
182 ;; #+energize "energize/energize-load.el"
|
|
183 ;;; formerly in sunpro/sunpro-load.el
|
|
184 ;; #+(and mule sparcworks) "mime-setup"
|
237
|
185
|
|
186 ;; Moved to Sun package
|
|
187 ;; #+sparcworks "cc-mode" ; Requires cc-mode package
|
|
188 ;; #+sparcworks "sunpro-init"
|
|
189 ;; #+sparcworks "ring"
|
|
190 ;; #+sparcworks "comint" ; Requires comint package
|
|
191 ;; #+sparcworks "annotations"
|
|
192
|
217
|
193 ;;; formerly in eos/sun-eos-load.el
|
|
194 ;; #+sparcworks "sun-eos-init"
|
|
195 ;; #+sparcworks "sun-eos-common"
|
|
196 ;; #+sparcworks "sun-eos-editor"
|
|
197 ;; #+sparcworks "sun-eos-browser"
|
|
198 ;; #+sparcworks "sun-eos-debugger"
|
|
199 ;; #+sparcworks "sun-eos-debugger-extra"
|
|
200 ;; #+sparcworks "sun-eos-menubar"
|
233
|
201 "loadhist" ; Must be dumped before loaddefs is loaded
|
217
|
202 "loaddefs" ; <=== autoloads get loaded here
|
|
203 ))
|