70
|
1 ;;; mule-load.el --- Load up all pre-loaded Mule Lisp files.
|
|
2 ;; Copyright (C) 1995 Sun Microsystems.
|
|
3
|
|
4 ;; This file is part of XEmacs.
|
|
5
|
|
6 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
7 ;; under the terms of the GNU General Public License as published by
|
|
8 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
9 ;; any later version.
|
|
10
|
|
11 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
12 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 ;; General Public License for more details.
|
|
15
|
|
16 ;; You should have received a copy of the GNU General Public License
|
|
17 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
18 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 ;; Boston, MA 02111-1307, USA.
|
|
20
|
|
21 ;; (load-gc) is defined in loadup.el
|
|
22
|
|
23 ;; Load these two first, to set up the most basic stuff.
|
|
24 (load-gc "mule-charset")
|
|
25 (load-gc "mule-coding")
|
|
26 ;; Handle I/O of files with extended characters.
|
|
27 (load-gc "mule-files")
|
|
28 ;; Load the remaining basic files.
|
|
29 (load-gc "mule-category")
|
|
30 ;;(load-gc "mule-process")
|
|
31 (load-gc "mule-ccl")
|
|
32 (load-gc "mule-misc")
|
110
|
33 (load-gc "kinsoku")
|
70
|
34 (when (featurep 'x)
|
|
35 (load-gc "mule-x-init"))
|
|
36
|
98
|
37 ;; after this goes the specific lisp routines for a particular input system
|
|
38 ;; 97.2.5 JHod Shouldn't these go into a site-load file to allow site
|
|
39 ;; or user switching of input systems???
|
|
40 ;(if (featurep 'wnn)
|
|
41 ; (progn
|
|
42 ; (load-gc "egg")
|
|
43 ; (load-gc "egg-wnn")
|
|
44 ; (setq egg-default-startup-file "eggrc-wnn")))
|
|
45
|
120
|
46 ;; (if (and (boundp 'CANNA) CANNA)
|
|
47 ;; (load-gc "canna")
|
|
48 ;; )
|
98
|
49
|
70
|
50 ;; Now load files to set up all the different languages/environments
|
|
51 ;; that Mule knows about.
|
|
52
|
|
53 (load-gc "arabic-hooks")
|
|
54 (load-gc "chinese-hooks")
|
|
55 (load-gc "cyrillic-hooks")
|
|
56 (load-gc "ethiopic-hooks")
|
|
57 (load-gc "european-hooks")
|
|
58 (load-gc "greek-hooks")
|
|
59 (load-gc "hebrew-hooks")
|
|
60 (load-gc "ipa-hooks")
|
|
61 (load-gc "japanese-hooks")
|
|
62 (load-gc "korean-hooks")
|
|
63 (load-gc "thai-hooks")
|
|
64 (load-gc "vietnamese-hooks-1")
|
|
65 (load-gc "vietnamese-hooks-2")
|
|
66
|
|
67 ;; Set up the XEmacs environment for Mule.
|
|
68 ;; Assumes the existence of various stuff above.
|
|
69 (load-gc "mule-init")
|
|
70
|
|
71 ;; Enable Mule capability for Gnus, mail, etc...
|
78
|
72 ;; Moved to sunpro-load.el - the default only for Sun.
|
|
73 ;;(load-gc "mime-setup")
|
|
74
|
|
75 ;;; mule-load.el ends here
|