comparison lisp/dumped-lisp.el @ 2465:afab4c317508

[xemacs-hg @ 2005-01-03 10:29:11 by michaels] 2005-01-03 Mike Sperber <mike@xemacs.org> * dumped-lisp.el (preloaded-file-list): Prefix Mule files with mule/, unbreaking the build.
author michaels
date Mon, 03 Jan 2005 10:29:13 +0000
parents ecf1ebac70d8
children a43cb0f95540
comparison
equal deleted inserted replaced
2464:3ef40e0fc5ab 2465:afab4c317508
156 ;; Provide basic commands to set coding systems to user 156 ;; Provide basic commands to set coding systems to user
157 "code-cmds" 157 "code-cmds"
158 "unicode" 158 "unicode"
159 ;;;;;;;;;;;;;;;;;; MULE support 159 ;;;;;;;;;;;;;;;;;; MULE support
160 (when (featurep 'mule) 160 (when (featurep 'mule)
161 '("mule-charset" 161 '("mule/mule-charset"
162 "mule-cmds" ; to sync with Emacs 20.1 162 "mule/mule-cmds" ; to sync with Emacs 20.1
163 "mule-coding" 163 "mule/mule-coding"
164 "mule-composite-stub" 164 "mule/mule-composite-stub"
165 "mule-composite" 165 "mule/mule-composite"
166 )) 166 ))
167 ;; may initialize coding systems 167 ;; may initialize coding systems
168 (when (featurep '(and mule x)) "mule-x-init") 168 (when (featurep '(and mule x)) "mule/mule-x-init")
169 (when (featurep '(and mule tty)) "mule-tty-init") 169 (when (featurep '(and mule tty)) "mule/mule-tty-init")
170 (when (and (featurep 'mule) (memq system-type '(windows-nt cygwin32))) 170 (when (and (featurep 'mule) (memq system-type '(windows-nt cygwin32)))
171 "mule-win32-init") 171 "mule-mule/win32-init")
172 "code-init" ; set up defaults 172 "code-init" ; set up defaults
173 ;; All files after this can have extended characters in them. 173 ;; All files after this can have extended characters in them.
174 (when (featurep 'mule) 174 (when (featurep 'mule)
175 '("mule-category" 175 '("mule/mule-category"
176 "mule-ccl" 176 "mule/mule-ccl"
177 "kinsoku" 177 "mule/kinsoku"
178 )) 178 ))
179 179
180 ;; after this goes the specific lisp routines for a particular input system 180 ;; after this goes the specific lisp routines for a particular input system
181 ;; 97.2.5 JHod Shouldn't these go into a site-load file to allow site 181 ;; 97.2.5 JHod Shouldn't these go into a site-load file to allow site
182 ;; or user switching of input systems??? 182 ;; or user switching of input systems???
194 ;; Mule knows about. Formerly we had to worry about files shadowed by 194 ;; Mule knows about. Formerly we had to worry about files shadowed by
195 ;; those of the same name in leim/quail.el, but no longer, since we now 195 ;; those of the same name in leim/quail.el, but no longer, since we now
196 ;; compile with -no-packages. 196 ;; compile with -no-packages.
197 197
198 (when (featurep 'mule) 198 (when (featurep 'mule)
199 '("arabic" 199 '("mule/arabic"
200 "chinese" 200 "mule/chinese"
201 "cyrillic" 201 "mule/cyrillic"
202 "english" 202 "mule/english"
203 "ethiopic" 203 "mule/ethiopic"
204 "european" 204 "mule/european"
205 "greek" 205 "mule/greek"
206 "hebrew" 206 "mule/hebrew"
207 "indian" 207 "mule/indian"
208 "devanagari" ; must be loaded after indian.el 208 "mule/devanagari" ; must be loaded after indian.el
209 "japanese" 209 "mule/japanese"
210 "korean" 210 "mule/korean"
211 "lao" 211 "mule/lao"
212 "latin" 212 "mule/latin"
213 "misc-lang" 213 "mule/misc-lang"
214 ;; "thai" #### merge thai and thai-xtis!!! 214 ;; "thai" #### merge thai and thai-xtis!!!
215 "thai-xtis" 215 "mule/thai-xtis"
216 "tibetan" 216 "mule/tibetan"
217 "vietnamese" 217 "mule/vietnamese"
218 )) 218 ))
219 219
220 ;; Specialized language support 220 ;; Specialized language support
221 (when (featurep '(and mule CANNA)) "canna-leim") 221 (when (featurep '(and mule CANNA)) "mule/canna-leim")
222 ;; Egg/Its is now a package 222 ;; Egg/Its is now a package
223 ; (when (featurep '(and mule wnn)) 223 ; (when (featurep '(and mule wnn))
224 ; '("egg-leim" "egg-kwnn-leim" "egg-cwnn-leim")) 224 ; '("egg-leim" "egg-kwnn-leim" "egg-cwnn-leim"))
225 ; (when (featurep 'mule) "egg-sj3-leim") 225 ; (when (featurep 'mule) "mule/egg-sj3-leim")
226 ;; SKK is now a package 226 ;; SKK is now a package
227 ; (when (featurep 'mule) "skk-leim") 227 ; (when (featurep 'mule) "mule/skk-leim")
228 228
229 ;; Enable Mule capability for Gnus, mail, etc... 229 ;; Enable Mule capability for Gnus, mail, etc...
230 ;; Moved to sunpro-load.el - the default only for Sun. 230 ;; Moved to sunpro-load.el - the default only for Sun.
231 ;;(pureload "mime-setup") 231 ;;(pureload "mime-setup")
232 232
233 ;; needs access to the charsets created by the above 233 ;; needs access to the charsets created by the above
234 ;; language-specific files. 234 ;; language-specific files.
235 (when (and (featurep 'mule) (valid-console-type-p 'mswindows)) 235 (when (and (featurep 'mule) (valid-console-type-p 'mswindows))
236 "mule-msw-init-late") 236 "mule/mule-msw-init-late")
237 237
238 ;;; mule-load.el ends here 238 ;;; mule-load.el ends here
239 239
240 ;; preload InfoDock stuff. should almost certainly not be here if 240 ;; preload InfoDock stuff. should almost certainly not be here if
241 ;; id-menus is not here. infodock needs to figure out a clever way to 241 ;; id-menus is not here. infodock needs to figure out a clever way to