Mercurial > hg > xemacs-beta
comparison lisp/mule/mule-load.el @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | |
children | c7528f8e288d |
comparison
equal
deleted
inserted
replaced
69:804d1389bcd6 | 70:131b0175ea99 |
---|---|
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") | |
33 (when (featurep 'x) | |
34 (load-gc "mule-x-init")) | |
35 | |
36 ;; Now load files to set up all the different languages/environments | |
37 ;; that Mule knows about. | |
38 | |
39 (load-gc "arabic-hooks") | |
40 (load-gc "chinese-hooks") | |
41 (load-gc "cyrillic-hooks") | |
42 (load-gc "ethiopic-hooks") | |
43 (load-gc "european-hooks") | |
44 (load-gc "greek-hooks") | |
45 (load-gc "hebrew-hooks") | |
46 (load-gc "ipa-hooks") | |
47 (load-gc "japanese-hooks") | |
48 (load-gc "korean-hooks") | |
49 (load-gc "thai-hooks") | |
50 (load-gc "vietnamese-hooks-1") | |
51 (load-gc "vietnamese-hooks-2") | |
52 | |
53 ;; Set up the XEmacs environment for Mule. | |
54 ;; Assumes the existence of various stuff above. | |
55 (load-gc "mule-init") | |
56 | |
57 ;; Enable Mule capability for Gnus, mail, etc... | |
58 (load-gc "mime-setup") |