comparison lisp/mule/mule-msw-init-late.el @ 780:578cb2932d72

[xemacs-hg @ 2002-03-18 10:07:30 by ben] config.inc.samp, xemacs.mak: Deal with never-ending perl quoting problems. README: Include a long, long description of the suggested directory layout for developing XEmacs. This should probably go as part of a larger document, a "Getting Started with Developing XEmacs". #### Does such a document exist? etc\unicode\mule-ucs\*: New directory, containing translation files for the remaining charsets that are not in unicode\unicode-consortium but are in mule-ucs. etc\unicode\other\*: New directory, containing translation files made up on an ad-hoc basis. etc\unicode\README: Update. * Some ChangeLog entries from stuff that got applied long ago never got checked in, due to the nasty SCCS "oops, i forgot again ..." bug. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan. Load new file mule-msw-init-late. unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages extracted from mule-ucs. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. dumped-lisp.el: Load the remaining languages -- lao, indian, devanagari, tibetan. Load new file mule-msw-init-late. unicode.el: Load the new tables for Ethiopic, Vietnamese, and other languages extracted from mule-ucs. mule\lao.el: Convert stuff to XEmacs-style. mule\thai-xtis.el: Move thai-xtis-chars.el stuff to here, since we can now handle encountering characters of a charset before the charset is defined. mule\thai-xtis-chars.el: Removed, moved into thai-xtis.el. mule\mule-msw-init.el: Move some stuff into mule-msw-init-late.el, which references charsets and thus needs to be delayed until after all charsets have been created. mule\mule-msw-init-late.el: New file, some stuff from mule-msw-init.el. fns.c, lread.c: Add variable require-prints-loading-message to cause loading messages to get printed when a file is loading during a `require', which normally doesn't happen. This can be set using env var XEMACSDEBUG to debug problems with non-interactive compilation. Modify load-internal so it prints "Requiring: ..." instead of "Loading: ..." when appropriate.
author ben
date Mon, 18 Mar 2002 10:07:39 +0000
parents
children 79c6ff3eef26
comparison
equal deleted inserted replaced
779:a29c4eef8f00 780:578cb2932d72
1 ;;; mule-msw-init-late.el --- initialization code for MS Windows under MULE
2 ;;; Copyright (C) 2001, 2002 Ben Wing.
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 ;; mapping between XEmacs charsets and code pages. something like this
22 ;; will might around once all the Unicode code is written, so we know how
23 ;; to choose the right font. (perhaps "code pages" will become "Unicode
24 ;; subranges"; they're more or less equivalent under Windows from a font
25 ;; perspective.) But ... in reality, we can just query the charset for its
26 ;; Unicode ranges, and the "charset ID" is not a good indicator of what a
27 ;; particular font supports; e.g. there's no charset ID at all for Indian
28 ;; fonts, but Windows clearly supports them. (The docs say that Indian
29 ;; support is "all Unicode"; i.e. charset ID's are on their way out. I
30 ;; guess we're supposed to query the font for what ranges it supports, and
31 ;; what its preferred range is.)
32
33 (let ((l '((ascii . 1252)
34 (latin-iso8859-2 . 1250)
35 (cyrillic-iso8859-5 . 1251)
36 (latin-iso8859-1 . 1252)
37 (greek-iso8859-7 . 1253)
38 (latin-iso8859-9 . 1254)
39 (hebrew-iso8859-8 . 1255)
40 ;; (arabic-iso8859-6 . 1256)
41 (latin-iso8859-4 . 1257)
42 (vietnamese-viscii-lower . 1258)
43 (vietnamese-viscii-upper . 1258)
44 ;; (thai-tis620 . 874)
45 (latin-jisx0201 . 932)
46 (katakana-jisx0201 . 932)
47 ;; (japanese-jisx0208-1978 . 932)
48 (japanese-jisx0208 . 932)
49 (japanese-jisx0212 . 932)
50 (chinese-gb2312 . 936)
51 (korean-ksc5601 . 949)
52 (chinese-big5-1 . 950)
53 (chinese-big5-2 . 950))))
54 (while l
55 (let ((charset (car (car l)))
56 (code-page (cdr (car l))))
57 (mswindows-set-charset-code-page charset code-page)
58 (setq l (cdr l)))))