Mercurial > hg > xemacs-beta
annotate lisp/mule/mule-win32-init.el @ 4477:e34711681f30
Don't determine whether to call general device-type code at startup,
rather decide in the device-specific code itself.
lisp/ChangeLog addition:
2008-07-07 Aidan Kehoe <kehoea@parhasard.net>
Patch to make it up to the device-specific code whether
various Lisp functions should be called during device creation,
not relying on the startup code to decide this. Also, rename
initial-window-system to initial-device-type (which makes more
sense in this scheme), always set it.
* startup.el (command-line):
Use initial-device-type, not initial-window-system; just call
#'make-device, leave the special behaviour to be done the first
time a console type is initialised to be decided on by the
respective console code.
* x-init.el (x-app-defaults-directory): Declare that it should be
bound.
(x-define-dead-key): Have the macro take a DEVICE argument.
(x-initialize-compose): Have the function take a DEVICE argument,
and use it when checking if various keysyms are available on the
keyboard.
(x-initialize-keyboard): Have the function take a DEVICE argument,
allowing device-specific keyboard initialisation.
(make-device-early-x-entry-point-called-p): New.
(make-device-late-x-entry-point-called-p): New. Rename
pre-x-win-initted, x-win-initted.
(make-device-early-x-entry-point): Rename init-pre-x-win, take the
call to make-x-device out (it should be called from the
device-creation code, not vice-versa).
(make-device-late-x-entry-point): Rename init-post-x-win, have it
take a DEVICE argument, use that DEVICE argument when working out
what device-specific things need doing. Don't use
create-console-hook in core code.
* x-win-xfree86.el (x-win-init-xfree86): Take a DEVICE argument;
use it.
* x-win-sun.el (x-win-init-sun): Take a DEVICE argument; use it.
* mule/mule-x-init.el: Remove #'init-mule-x-win, an empty
function.
* tty-init.el (make-device-early-tty-entry-point-called-p): New.
Rename pre-tty-win-initted.
(make-device-early-tty-entry-point): New.
Rename init-pre-tty-win.
(make-frame-after-init-entry-point): New.
Rename init-post-tty-win to better reflect when it's called.
* gtk-init.el (gtk-early-lisp-options-file): New.
Move this path to a documented variable.
(gtk-command-switch-alist): Wrap the docstring to fewer than 79
columns.
(make-device-early-gtk-entry-point-called-p): New.
(make-device-late-gtk-entry-point-called-p): New.
Renamed gtk-pre-win-initted, gtk-post-win-initted to these.
(make-device-early-gtk-entry-point): New.
(make-device-late-gtk-entry-point): New.
Renamed init-pre-gtk-win, init-post-gtk-win to these.
Have make-device-late-gtk-entry-point take a device argument, and use
it; have make-device-early-gtk-entry-point load the GTK-specific
startup code, instead of doing that in C.
(init-gtk-win): Deleted, functionality moved to the GTK device
creation code.
(gtk-define-dead-key): Have it take a DEVICE argument; use this
argument.
(gtk-initialize-compose): Ditto.
* coding.el (set-terminal-coding-system):
Correct the docstring; the function isn't broken.
src/ChangeLog addition:
2008-07-07 Aidan Kehoe <kehoea@parhasard.net>
Patch to make it up to the device-specific code whether
various Lisp functions should be called during device creation,
not relying on the startup code to decide this. Also, rename
initial-window-system to initial-device-type (which makes more
sense in this scheme), always set it.
* redisplay.c (Vinitial_device_type): New.
(Vinitial_window_system): Removed.
Rename initial-window-system to initial-device type, making it
a stream if we're noninteractive. Update its docstring.
* device-x.c (Qmake_device_early_x_entry_point,
Qmake_device_late_x_entry_point): New.
Rename Qinit_pre_x_win, Qinit_post_x_win.
(x_init_device): Call #'make-device-early-x-entry-point earlier,
now we rely on it to find the application class and the
app-defaults directory.
(x_finish_init_device): Call #'make-device-late-x-entry-point with
the created device.
(Vx_app_defaults_directory): Always make this available, to
simplify code in x-init.el.
* device-tty.c (Qmake_device_early_tty_entry_point): New.
Rename Qinit_pre_tty_win, rename Qinit_post_tty_win and move to
frame-tty.c as Qmake_frame_after_init_entry_point.
(tty_init_device): Call #'make-device-early-tty-entry-point before
doing anything.
* frame-tty.c (Qmake_frame_after_init_entry_point): New.
* frame-tty.c (tty_after_init_frame): Have it call the
better-named #'make-frame-after-init-entry-point function
instead of #'init-post-tty-win (since it's called after frame, not
device, creation).
* device-msw.c (Qmake_device_early_mswindows_entry_point,
Qmake_device_late_mswindows_entry_point): New.
Rename Qinit_pre_mswindows_win, Qinit_post_mswindows_win.
(mswindows_init_device): Call
#'make-device-early-mswindows-entry-point here, instead of having
its predecessor call us.
(mswindows_finish_init_device): Call
#'make-device-early-mswindows-entry-point, for symmetry with the
other device types (though it's an empty function).
* device-gtk.c (Qmake_device_early_gtk_entry_point,
Qmake_device_late_gtk_entry_point): New.
Rename Qinit_pre_gtk_win, Qinit_post_gtk_win.
(gtk_init_device): Call #'make-device-early-gtk-entry-point; don't
load ~/.xemacs/gtk-options.el ourselves, leave that to lisp.
(gtk_finish_init_device): Call #'make-device-late-gtk-entry-point
with the created device as an argument.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 09 Jul 2008 20:46:22 +0200 |
parents | 15dd5229cea5 |
children | d402d7b18bd8 |
rev | line source |
---|---|
1315 | 1 ;;; mule-win32-init.el --- initialization code for MS Windows/Cygwin 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 (make-coding-system | |
22 'mswindows-multibyte 'mswindows-multibyte | |
23 "MS Windows Multibyte (current code page)" | |
24 '(mnemonic "MSW-MB" | |
25 documentation | |
26 "MS Windows multibyte -- current code page. | |
27 | |
28 This implements the encoding specified by the current code page -- | |
29 i.e. the ANSI code page corresponding to the current locale, as | |
30 returned by | |
31 | |
32 (mswindows-locale-code-page (mswindows-current-locale)) | |
33 " | |
34 locale current | |
35 code-page ansi)) | |
36 | |
37 ;; we temporarily aliased this to raw-text in intl-win32.c. | |
38 (define-coding-system-alias 'mswindows-multibyte-system-default nil) | |
39 (make-coding-system | |
40 'mswindows-multibyte-system-default 'mswindows-multibyte | |
41 "MS Windows Multibyte (system default code page)" | |
42 '(mnemonic "MSW-MB-SysDef" | |
43 documentation | |
44 "MS Windows multibyte -- system default code page. | |
45 | |
46 This implements the encoding specified by the system default code page | |
47 -- i.e. the ANSI code page corresponding to the system default locale, | |
48 as returned by | |
49 | |
50 (mswindows-locale-code-page (mswindows-system-default-locale)) | |
51 " | |
52 locale system-default | |
53 code-page ansi)) | |
54 | |
55 (make-coding-system | |
56 'mswindows-multibyte-user-default 'mswindows-multibyte | |
57 "MS Windows Multibyte (user default code page)" | |
58 '(mnemonic "MSW-MB-UserDef" | |
59 documentation | |
60 "MS Windows multibyte -- user default code page. | |
61 | |
62 This implements the encoding specified by the user default code page | |
63 -- i.e. the ANSI code page corresponding to the user default locale, | |
64 as returned by | |
65 | |
66 (mswindows-locale-code-page (mswindows-user-default-locale)) | |
67 " | |
68 locale user-default | |
69 code-page ansi)) | |
70 | |
71 (make-coding-system | |
72 'mswindows-multibyte-oem 'mswindows-multibyte | |
73 "MS Windows Multibyte (current OEM code page)" | |
74 '(mnemonic "MSW-MB-OEM" | |
75 documentation | |
76 "MS Windows multibyte -- current OEM code page. | |
77 | |
78 This implements the encoding specified by the current OEM code page | |
79 -- i.e. the OEM code page corresponding to the current locale, | |
80 as returned by | |
81 | |
82 (mswindows-locale-oem-code-page (mswindows-current-locale)) | |
83 " | |
84 locale current | |
85 code-page oem)) | |
86 | |
87 (make-coding-system | |
88 'mswindows-multibyte-oem-system-default 'mswindows-multibyte | |
89 "MS Windows Multibyte (system default OEM code page)" | |
90 '(mnemonic "MSW-MB-OEM-SysDef" | |
91 documentation | |
92 "MS Windows multibyte -- system default OEM code page. | |
93 | |
94 This implements the encoding specified by the system default OEM code page | |
95 -- i.e. the OEM code page corresponding to the system default locale, | |
96 as returned by | |
97 | |
98 (mswindows-locale-oem-code-page (mswindows-system-default-locale)) | |
99 " | |
100 locale system-default | |
101 code-page oem)) | |
102 | |
103 (make-coding-system | |
104 'mswindows-multibyte-oem-user-default 'mswindows-multibyte | |
105 "MS Windows Multibyte (user default OEM code page)" | |
106 '(mnemonic "MSW-MB-OEM-UserDef" | |
107 documentation | |
108 "MS Windows multibyte -- user default OEM code page. | |
109 | |
110 This implements the encoding specified by the user default OEM code page | |
111 -- i.e. the OEM code page corresponding to the user default locale, | |
112 as returned by | |
113 | |
114 (mswindows-locale-oem-code-page (mswindows-user-default-locale)) | |
115 " | |
116 locale user-default | |
117 code-page oem)) | |
118 | |
4145 | 119 (loop |
120 for (ansioem cp category name) | |
121 in '(("EBCDIC" 037 no-conversion "EBCDIC") | |
122 ("OEM" 437 no-conversion "MS-DOS United States") | |
123 ("EBCDIC" 500 no-conversion "EBCDIC \"500V1\"") | |
124 | |
125 ;; This is ISO-8859-6. | |
126 ;; ("OEM" 708 "Arabic (ASMO 708)") | |
127 ("OEM" 709 no-conversion "Arabic (ASMO 449+, BCON V4)") | |
128 ("OEM" 710 no-conversion "Arabic (Transparent Arabic)") | |
129 ("OEM" 720 no-conversion "Arabic (Transparent ASMO)") | |
130 ("OEM" 737 no-conversion "Greek (formerly 437G)") | |
131 ("OEM" 775 no-conversion "Baltic") | |
132 ("OEM" 850 no-conversion "MS-DOS Multilingual (Latin I)") | |
133 ("OEM" 852 no-conversion "MS-DOS Slavic (Latin II)") | |
134 ("OEM" 855 no-conversion "IBM Cyrillic (primarily Russian)") | |
135 ("OEM" 857 no-conversion "IBM Turkish") | |
136 ("OEM" 860 no-conversion "MS-DOS Portuguese") | |
137 ("OEM" 861 no-conversion "MS-DOS Icelandic") | |
138 ("OEM" 862 no-conversion "Hebrew") | |
139 ("OEM" 863 no-conversion "MS-DOS Canadian-French") | |
140 ("OEM" 864 no-conversion "Arabic") | |
141 ("OEM" 865 no-conversion "MS-DOS Nordic") | |
142 ; ("OEM" 866 no-conversion "MS-DOS Russian") | |
143 ("OEM" 869 no-conversion "IBM Modern Greek") | |
144 ("Ansi/OEM" 874 no-conversion "Thai") | |
145 ("EBCDIC" 875 no-conversion "EBCDIC") | |
146 ("Ansi/OEM" 932 shift_jis "Japanese") | |
147 ("Ansi/OEM" 936 iso_8_2 "Chinese (PRC, Singapore)") | |
148 ("Ansi/OEM" 949 iso_8_2 "Korean") | |
149 ("Ansi/OEM" 950 big5 "Chinese (Taiwan; Hong Kong SAR, PRC)") | |
150 ("EBCDIC" 1026 no-conversion "EBCDIC") | |
151 | |
152 ;; This code page doesn't work. See | |
153 ;; http://blogs.msdn.com/michkap/archive/2005/08/01/446475.aspx | |
154 ; ("ANSI" 1200 utf-16-little-endian "Unicode (BMP of ISO 10646)") | |
155 | |
156 ;; We implement this ourselves, and keeping the same implementation | |
157 ;; across platforms means behaviour is a bit more consistent. | |
4447
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4145
diff
changeset
|
158 ; ("ANSI" 1250 no-conversion "Windows 3.1 Eastern European") |
4145 | 159 ; ("ANSI" 1251 no-conversion "Windows 3.1 Cyrillic") |
160 ; ("ANSI" 1252 no-conversion "Windows 3.1 US (ANSI)") | |
161 | |
162 ; ("ANSI" 1253 no-conversion "Windows 3.1 Greek") | |
163 ("ANSI" 1254 no-conversion "Windows 3.1 Turkish") | |
164 ("ANSI" 1255 no-conversion "Hebrew") | |
165 ("ANSI" 1256 no-conversion "Arabic") | |
166 ("ANSI" 1257 no-conversion "Baltic") | |
167 ("ANSI" 1258 no-conversion "VietNam") | |
168 ;; #### Is this category right? I don't have Lunde to hand, and the | |
169 ;; online information on Johab is scant. | |
170 ("Ansi/OEM" 1361 iso_8_2 "Korean (Johab)") | |
171 ("Mac" 10000 no-conversion "Macintosh Roman") | |
172 ("Mac" 10001 shift_jis "Macintosh Japanese") | |
173 ("Mac" 10006 no-conversion "Macintosh Greek I") | |
174 ("Mac" 10007 no-conversion "Macintosh Cyrillic") | |
175 ("Mac" 10029 no-conversion "Macintosh Latin 2") | |
176 ("Mac" 10079 no-conversion "Macintosh Icelandic") | |
177 ("Mac" 10081 no-conversion "Macintosh Turkish")) | |
178 do | |
179 (make-coding-system | |
180 (intern (format "windows-%s" cp)) | |
181 'mswindows-multibyte | |
182 (format "MS Windows code page %s (%s, %s)" cp ansioem name) | |
183 `(mnemonic | |
184 ,(format "MSW-%s" cp) | |
185 code-page ,cp | |
186 documentation | |
187 ,(format | |
188 "MS Windows Multibyte -- code page %s (%s, %s). | |
1315 | 189 |
190 This implements the encoding specified by code page %s. | |
191 For more information on code pages, see `mswindows-charset-code-page'." | |
4145 | 192 cp ansioem name cp))) |
193 (define-coding-system-alias | |
194 (intern (format "cp%s" cp)) | |
195 (intern (format "windows-%s" cp))) | |
196 (coding-system-put (intern (format "windows-%s" cp)) 'category category)) | |
197 |