]> code.delx.au - gnu-emacs/blob - lisp/term/x-win.el
Merged in changes from CVS trunk. (Long time no see!) :-)
[gnu-emacs] / lisp / term / x-win.el
1 ;;; x-win.el --- parse relevant switches and set up for X -*-coding: iso-2022-7bit;-*-
2
3 ;; Copyright (C) 1993, 1994, 2001, 2002 Free Software Foundation, Inc.
4
5 ;; Author: FSF
6 ;; Keywords: terminals, i18n
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; X-win.el: this file defines functions to initialize the X window
28 ;; system and process X-specific command line parameters before
29 ;; creating the first X frame.
30
31 ;; Note that contrary to previous Emacs versions, the act of loading
32 ;; this file should not have the side effect of initializing the
33 ;; window system or processing command line arguments (this file is
34 ;; now loaded in loadup.el). See the variables
35 ;; `handle-args-function-alist' and
36 ;; `window-system-initialization-alist' for more details.
37
38 ;; startup.el will then examine startup files, and eventually call the hooks
39 ;; which create the first window(s).
40
41 ;;; Code:
42 \f
43 ;; These are the standard X switches from the Xt Initialize.c file of
44 ;; Release 4.
45
46 ;; Command line Resource Manager string
47
48 ;; +rv *reverseVideo
49 ;; +synchronous *synchronous
50 ;; -background *background
51 ;; -bd *borderColor
52 ;; -bg *background
53 ;; -bordercolor *borderColor
54 ;; -borderwidth .borderWidth
55 ;; -bw .borderWidth
56 ;; -display .display
57 ;; -fg *foreground
58 ;; -fn *font
59 ;; -font *font
60 ;; -foreground *foreground
61 ;; -geometry .geometry
62 ;; -i .iconType
63 ;; -itype .iconType
64 ;; -iconic .iconic
65 ;; -name .name
66 ;; -reverse *reverseVideo
67 ;; -rv *reverseVideo
68 ;; -selectionTimeout .selectionTimeout
69 ;; -synchronous *synchronous
70 ;; -xrm
71
72 ;; An alist of X options and the function which handles them. See
73 ;; ../startup.el.
74
75 (if (not (fboundp 'x-create-frame))
76 (error "%s: Loading x-win.el but not compiled for X" (invocation-name)))
77
78 (require 'frame)
79 (require 'mouse)
80 (require 'scroll-bar)
81 (require 'faces)
82 (require 'select)
83 (require 'menu-bar)
84 (require 'fontset)
85 (require 'x-dnd)
86
87 (eval-when-compile (require 'server))
88
89 (defvar x-invocation-args)
90
91 (defvar x-command-line-resources nil)
92
93 ;; Handler for switches of the form "-switch value" or "-switch".
94 (defun x-handle-switch (switch)
95 (let ((aelt (assoc switch command-line-x-option-alist)))
96 (if aelt
97 (let ((param (nth 3 aelt))
98 (value (nth 4 aelt)))
99 (if value
100 (setq default-frame-alist
101 (cons (cons param value)
102 default-frame-alist))
103 (setq default-frame-alist
104 (cons (cons param
105 (car x-invocation-args))
106 default-frame-alist)
107 x-invocation-args (cdr x-invocation-args)))))))
108
109 ;; Handler for switches of the form "-switch n"
110 (defun x-handle-numeric-switch (switch)
111 (let ((aelt (assoc switch command-line-x-option-alist)))
112 (if aelt
113 (let ((param (nth 3 aelt)))
114 (setq default-frame-alist
115 (cons (cons param
116 (string-to-int (car x-invocation-args)))
117 default-frame-alist)
118 x-invocation-args
119 (cdr x-invocation-args))))))
120
121 ;; Handle options that apply to initial frame only
122 (defun x-handle-initial-switch (switch)
123 (let ((aelt (assoc switch command-line-x-option-alist)))
124 (if aelt
125 (let ((param (nth 3 aelt))
126 (value (nth 4 aelt)))
127 (if value
128 (setq initial-frame-alist
129 (cons (cons param value)
130 initial-frame-alist))
131 (setq initial-frame-alist
132 (cons (cons param
133 (car x-invocation-args))
134 initial-frame-alist)
135 x-invocation-args (cdr x-invocation-args)))))))
136
137 ;; Make -iconic apply only to the initial frame!
138 (defun x-handle-iconic (switch)
139 (setq initial-frame-alist
140 (cons '(visibility . icon) initial-frame-alist)))
141
142 ;; Handle the -xrm option.
143 (defun x-handle-xrm-switch (switch)
144 (unless (consp x-invocation-args)
145 (error "%s: missing argument to `%s' option" (invocation-name) switch))
146 (setq x-command-line-resources
147 (if (null x-command-line-resources)
148 (car x-invocation-args)
149 (concat x-command-line-resources "\n" (car x-invocation-args))))
150 (setq x-invocation-args (cdr x-invocation-args)))
151
152 ;; Handle the geometry option
153 (defun x-handle-geometry (switch)
154 (let* ((geo (x-parse-geometry (car x-invocation-args)))
155 (left (assq 'left geo))
156 (top (assq 'top geo))
157 (height (assq 'height geo))
158 (width (assq 'width geo)))
159 (if (or height width)
160 (setq default-frame-alist
161 (append default-frame-alist
162 '((user-size . t))
163 (if height (list height))
164 (if width (list width)))
165 initial-frame-alist
166 (append initial-frame-alist
167 '((user-size . t))
168 (if height (list height))
169 (if width (list width)))))
170 (if (or left top)
171 (setq initial-frame-alist
172 (append initial-frame-alist
173 '((user-position . t))
174 (if left (list left))
175 (if top (list top)))))
176 (setq x-invocation-args (cdr x-invocation-args))))
177
178 ;; Handle the -name option. Set the variable x-resource-name
179 ;; to the option's operand; set the name of
180 ;; the initial frame, too.
181 (defun x-handle-name-switch (switch)
182 (or (consp x-invocation-args)
183 (error "%s: missing argument to `%s' option" (invocation-name) switch))
184 (setq x-resource-name (car x-invocation-args)
185 x-invocation-args (cdr x-invocation-args))
186 (setq initial-frame-alist (cons (cons 'name x-resource-name)
187 initial-frame-alist)))
188
189 (defvar x-display-name nil
190 "The X display name specifying server and X frame.")
191
192 (defun x-handle-display (switch)
193 (setq x-display-name (car x-invocation-args)
194 x-invocation-args (cdr x-invocation-args))
195 ;; Make subshell programs see the same DISPLAY value Emacs really uses.
196 ;; Note that this isn't completely correct, since Emacs can use
197 ;; multiple displays. However, there is no way to tell an already
198 ;; running subshell which display the user is currently typing on.
199 (setenv "DISPLAY" x-display-name))
200
201 (defun x-handle-args (args)
202 "Process the X-related command line options in ARGS.
203 This is done before the user's startup file is loaded. They are copied to
204 `x-invocation-args', from which the X-related things are extracted, first
205 the switch (e.g., \"-fg\") in the following code, and possible values
206 \(e.g., \"black\") in the option handler code (e.g., x-handle-switch).
207 This function returns ARGS minus the arguments that have been processed."
208 ;; We use ARGS to accumulate the args that we don't handle here, to return.
209 (setq x-invocation-args args
210 args nil)
211 (while (and x-invocation-args
212 (not (equal (car x-invocation-args) "--")))
213 (let* ((this-switch (car x-invocation-args))
214 (orig-this-switch this-switch)
215 completion argval aelt handler)
216 (setq x-invocation-args (cdr x-invocation-args))
217 ;; Check for long options with attached arguments
218 ;; and separate out the attached option argument into argval.
219 (if (string-match "^--[^=]*=" this-switch)
220 (setq argval (substring this-switch (match-end 0))
221 this-switch (substring this-switch 0 (1- (match-end 0)))))
222 ;; Complete names of long options.
223 (if (string-match "^--" this-switch)
224 (progn
225 (setq completion (try-completion this-switch command-line-x-option-alist))
226 (if (eq completion t)
227 ;; Exact match for long option.
228 nil
229 (if (stringp completion)
230 (let ((elt (assoc completion command-line-x-option-alist)))
231 ;; Check for abbreviated long option.
232 (or elt
233 (error "Option `%s' is ambiguous" this-switch))
234 (setq this-switch completion))))))
235 (setq aelt (assoc this-switch command-line-x-option-alist))
236 (if aelt (setq handler (nth 2 aelt)))
237 (if handler
238 (if argval
239 (let ((x-invocation-args
240 (cons argval x-invocation-args)))
241 (funcall handler this-switch))
242 (funcall handler this-switch))
243 (setq args (cons orig-this-switch args)))))
244 (nconc (nreverse args) x-invocation-args))
245
246 ;; Handle the --smid switch. This is used by the session manager
247 ;; to give us back our session id we had on the previous run.
248 (defun x-handle-smid (switch)
249 (or (consp x-invocation-args)
250 (error "%s: missing argument to `%s' option" (invocation-name) switch))
251 (setq x-session-previous-id (car x-invocation-args)
252 x-invocation-args (cdr x-invocation-args)))
253
254 (defvar emacs-save-session-functions nil
255 "Special hook run when a save-session event occurs.
256 The functions do not get any argument.
257 Functions can return non-nil to inform the session manager that the
258 window system shutdown should be aborted.
259
260 See also `emacs-session-save'.")
261
262 (defun emacs-session-filename (session-id)
263 "Construct a filename to save the session in based on SESSION-ID.
264 If the directory ~/.emacs.d exists, we make a filename in there, otherwise
265 a file in the home directory."
266 (let ((basename (concat "session." session-id))
267 (emacs-dir "~/.emacs.d/"))
268 (expand-file-name (if (file-directory-p emacs-dir)
269 (concat emacs-dir basename)
270 (concat "~/.emacs-" basename)))))
271
272 (defun emacs-session-save ()
273 "This function is called when the window system is shutting down.
274 If this function returns non-nil, the window system shutdown is cancelled.
275
276 When a session manager tells Emacs that the window system is shutting
277 down, this function is called. It calls the functions in the hook
278 `emacs-save-session-functions'. Functions are called with the current
279 buffer set to a temporary buffer. Functions should use `insert' to insert
280 lisp code to save the session state. The buffer is saved
281 in a file in the home directory of the user running Emacs. The file
282 is evaluated when Emacs is restarted by the session manager.
283
284 If any of the functions returns non-nil, no more functions are called
285 and this function returns non-nil. This will inform the session manager
286 that it should abort the window system shutdown."
287 (let ((filename (emacs-session-filename x-session-id))
288 (buf (get-buffer-create (concat " *SES " x-session-id))))
289 (when (file-exists-p filename)
290 (delete-file filename))
291 (with-current-buffer buf
292 (let ((cancel-shutdown (condition-case nil
293 ;; A return of t means cancel the shutdown.
294 (run-hook-with-args-until-success
295 'emacs-save-session-functions)
296 (error t))))
297 (unless cancel-shutdown
298 (write-file filename))
299 (kill-buffer buf)
300 cancel-shutdown))))
301
302 (defun emacs-session-restore (previous-session-id)
303 "Restore the Emacs session if started by a session manager.
304 The file saved by `emacs-session-save' is evaluated and deleted if it
305 exists."
306 (let ((filename (emacs-session-filename previous-session-id)))
307 (when (file-exists-p filename)
308 (load-file filename)
309 (delete-file filename)
310 (message "Restored session data"))))
311
312
313
314 \f
315 ;;
316 ;; Standard X cursor shapes, courtesy of Mr. Fox, who wanted ALL of them.
317 ;;
318
319 (defconst x-pointer-X-cursor 0)
320 (defconst x-pointer-arrow 2)
321 (defconst x-pointer-based-arrow-down 4)
322 (defconst x-pointer-based-arrow-up 6)
323 (defconst x-pointer-boat 8)
324 (defconst x-pointer-bogosity 10)
325 (defconst x-pointer-bottom-left-corner 12)
326 (defconst x-pointer-bottom-right-corner 14)
327 (defconst x-pointer-bottom-side 16)
328 (defconst x-pointer-bottom-tee 18)
329 (defconst x-pointer-box-spiral 20)
330 (defconst x-pointer-center-ptr 22)
331 (defconst x-pointer-circle 24)
332 (defconst x-pointer-clock 26)
333 (defconst x-pointer-coffee-mug 28)
334 (defconst x-pointer-cross 30)
335 (defconst x-pointer-cross-reverse 32)
336 (defconst x-pointer-crosshair 34)
337 (defconst x-pointer-diamond-cross 36)
338 (defconst x-pointer-dot 38)
339 (defconst x-pointer-dotbox 40)
340 (defconst x-pointer-double-arrow 42)
341 (defconst x-pointer-draft-large 44)
342 (defconst x-pointer-draft-small 46)
343 (defconst x-pointer-draped-box 48)
344 (defconst x-pointer-exchange 50)
345 (defconst x-pointer-fleur 52)
346 (defconst x-pointer-gobbler 54)
347 (defconst x-pointer-gumby 56)
348 (defconst x-pointer-hand1 58)
349 (defconst x-pointer-hand2 60)
350 (defconst x-pointer-heart 62)
351 (defconst x-pointer-icon 64)
352 (defconst x-pointer-iron-cross 66)
353 (defconst x-pointer-left-ptr 68)
354 (defconst x-pointer-left-side 70)
355 (defconst x-pointer-left-tee 72)
356 (defconst x-pointer-leftbutton 74)
357 (defconst x-pointer-ll-angle 76)
358 (defconst x-pointer-lr-angle 78)
359 (defconst x-pointer-man 80)
360 (defconst x-pointer-middlebutton 82)
361 (defconst x-pointer-mouse 84)
362 (defconst x-pointer-pencil 86)
363 (defconst x-pointer-pirate 88)
364 (defconst x-pointer-plus 90)
365 (defconst x-pointer-question-arrow 92)
366 (defconst x-pointer-right-ptr 94)
367 (defconst x-pointer-right-side 96)
368 (defconst x-pointer-right-tee 98)
369 (defconst x-pointer-rightbutton 100)
370 (defconst x-pointer-rtl-logo 102)
371 (defconst x-pointer-sailboat 104)
372 (defconst x-pointer-sb-down-arrow 106)
373 (defconst x-pointer-sb-h-double-arrow 108)
374 (defconst x-pointer-sb-left-arrow 110)
375 (defconst x-pointer-sb-right-arrow 112)
376 (defconst x-pointer-sb-up-arrow 114)
377 (defconst x-pointer-sb-v-double-arrow 116)
378 (defconst x-pointer-shuttle 118)
379 (defconst x-pointer-sizing 120)
380 (defconst x-pointer-spider 122)
381 (defconst x-pointer-spraycan 124)
382 (defconst x-pointer-star 126)
383 (defconst x-pointer-target 128)
384 (defconst x-pointer-tcross 130)
385 (defconst x-pointer-top-left-arrow 132)
386 (defconst x-pointer-top-left-corner 134)
387 (defconst x-pointer-top-right-corner 136)
388 (defconst x-pointer-top-side 138)
389 (defconst x-pointer-top-tee 140)
390 (defconst x-pointer-trek 142)
391 (defconst x-pointer-ul-angle 144)
392 (defconst x-pointer-umbrella 146)
393 (defconst x-pointer-ur-angle 148)
394 (defconst x-pointer-watch 150)
395 (defconst x-pointer-xterm 152)
396 \f
397 ;;
398 ;; Available colors
399 ;;
400
401 (defvar x-colors '("LightGreen"
402 "light green"
403 "DarkRed"
404 "dark red"
405 "DarkMagenta"
406 "dark magenta"
407 "DarkCyan"
408 "dark cyan"
409 "DarkBlue"
410 "dark blue"
411 "DarkGray"
412 "dark gray"
413 "DarkGrey"
414 "dark grey"
415 "grey100"
416 "gray100"
417 "grey99"
418 "gray99"
419 "grey98"
420 "gray98"
421 "grey97"
422 "gray97"
423 "grey96"
424 "gray96"
425 "grey95"
426 "gray95"
427 "grey94"
428 "gray94"
429 "grey93"
430 "gray93"
431 "grey92"
432 "gray92"
433 "grey91"
434 "gray91"
435 "grey90"
436 "gray90"
437 "grey89"
438 "gray89"
439 "grey88"
440 "gray88"
441 "grey87"
442 "gray87"
443 "grey86"
444 "gray86"
445 "grey85"
446 "gray85"
447 "grey84"
448 "gray84"
449 "grey83"
450 "gray83"
451 "grey82"
452 "gray82"
453 "grey81"
454 "gray81"
455 "grey80"
456 "gray80"
457 "grey79"
458 "gray79"
459 "grey78"
460 "gray78"
461 "grey77"
462 "gray77"
463 "grey76"
464 "gray76"
465 "grey75"
466 "gray75"
467 "grey74"
468 "gray74"
469 "grey73"
470 "gray73"
471 "grey72"
472 "gray72"
473 "grey71"
474 "gray71"
475 "grey70"
476 "gray70"
477 "grey69"
478 "gray69"
479 "grey68"
480 "gray68"
481 "grey67"
482 "gray67"
483 "grey66"
484 "gray66"
485 "grey65"
486 "gray65"
487 "grey64"
488 "gray64"
489 "grey63"
490 "gray63"
491 "grey62"
492 "gray62"
493 "grey61"
494 "gray61"
495 "grey60"
496 "gray60"
497 "grey59"
498 "gray59"
499 "grey58"
500 "gray58"
501 "grey57"
502 "gray57"
503 "grey56"
504 "gray56"
505 "grey55"
506 "gray55"
507 "grey54"
508 "gray54"
509 "grey53"
510 "gray53"
511 "grey52"
512 "gray52"
513 "grey51"
514 "gray51"
515 "grey50"
516 "gray50"
517 "grey49"
518 "gray49"
519 "grey48"
520 "gray48"
521 "grey47"
522 "gray47"
523 "grey46"
524 "gray46"
525 "grey45"
526 "gray45"
527 "grey44"
528 "gray44"
529 "grey43"
530 "gray43"
531 "grey42"
532 "gray42"
533 "grey41"
534 "gray41"
535 "grey40"
536 "gray40"
537 "grey39"
538 "gray39"
539 "grey38"
540 "gray38"
541 "grey37"
542 "gray37"
543 "grey36"
544 "gray36"
545 "grey35"
546 "gray35"
547 "grey34"
548 "gray34"
549 "grey33"
550 "gray33"
551 "grey32"
552 "gray32"
553 "grey31"
554 "gray31"
555 "grey30"
556 "gray30"
557 "grey29"
558 "gray29"
559 "grey28"
560 "gray28"
561 "grey27"
562 "gray27"
563 "grey26"
564 "gray26"
565 "grey25"
566 "gray25"
567 "grey24"
568 "gray24"
569 "grey23"
570 "gray23"
571 "grey22"
572 "gray22"
573 "grey21"
574 "gray21"
575 "grey20"
576 "gray20"
577 "grey19"
578 "gray19"
579 "grey18"
580 "gray18"
581 "grey17"
582 "gray17"
583 "grey16"
584 "gray16"
585 "grey15"
586 "gray15"
587 "grey14"
588 "gray14"
589 "grey13"
590 "gray13"
591 "grey12"
592 "gray12"
593 "grey11"
594 "gray11"
595 "grey10"
596 "gray10"
597 "grey9"
598 "gray9"
599 "grey8"
600 "gray8"
601 "grey7"
602 "gray7"
603 "grey6"
604 "gray6"
605 "grey5"
606 "gray5"
607 "grey4"
608 "gray4"
609 "grey3"
610 "gray3"
611 "grey2"
612 "gray2"
613 "grey1"
614 "gray1"
615 "grey0"
616 "gray0"
617 "thistle4"
618 "thistle3"
619 "thistle2"
620 "thistle1"
621 "MediumPurple4"
622 "MediumPurple3"
623 "MediumPurple2"
624 "MediumPurple1"
625 "purple4"
626 "purple3"
627 "purple2"
628 "purple1"
629 "DarkOrchid4"
630 "DarkOrchid3"
631 "DarkOrchid2"
632 "DarkOrchid1"
633 "MediumOrchid4"
634 "MediumOrchid3"
635 "MediumOrchid2"
636 "MediumOrchid1"
637 "plum4"
638 "plum3"
639 "plum2"
640 "plum1"
641 "orchid4"
642 "orchid3"
643 "orchid2"
644 "orchid1"
645 "magenta4"
646 "magenta3"
647 "magenta2"
648 "magenta1"
649 "VioletRed4"
650 "VioletRed3"
651 "VioletRed2"
652 "VioletRed1"
653 "maroon4"
654 "maroon3"
655 "maroon2"
656 "maroon1"
657 "PaleVioletRed4"
658 "PaleVioletRed3"
659 "PaleVioletRed2"
660 "PaleVioletRed1"
661 "LightPink4"
662 "LightPink3"
663 "LightPink2"
664 "LightPink1"
665 "pink4"
666 "pink3"
667 "pink2"
668 "pink1"
669 "HotPink4"
670 "HotPink3"
671 "HotPink2"
672 "HotPink1"
673 "DeepPink4"
674 "DeepPink3"
675 "DeepPink2"
676 "DeepPink1"
677 "red4"
678 "red3"
679 "red2"
680 "red1"
681 "OrangeRed4"
682 "OrangeRed3"
683 "OrangeRed2"
684 "OrangeRed1"
685 "tomato4"
686 "tomato3"
687 "tomato2"
688 "tomato1"
689 "coral4"
690 "coral3"
691 "coral2"
692 "coral1"
693 "DarkOrange4"
694 "DarkOrange3"
695 "DarkOrange2"
696 "DarkOrange1"
697 "orange4"
698 "orange3"
699 "orange2"
700 "orange1"
701 "LightSalmon4"
702 "LightSalmon3"
703 "LightSalmon2"
704 "LightSalmon1"
705 "salmon4"
706 "salmon3"
707 "salmon2"
708 "salmon1"
709 "brown4"
710 "brown3"
711 "brown2"
712 "brown1"
713 "firebrick4"
714 "firebrick3"
715 "firebrick2"
716 "firebrick1"
717 "chocolate4"
718 "chocolate3"
719 "chocolate2"
720 "chocolate1"
721 "tan4"
722 "tan3"
723 "tan2"
724 "tan1"
725 "wheat4"
726 "wheat3"
727 "wheat2"
728 "wheat1"
729 "burlywood4"
730 "burlywood3"
731 "burlywood2"
732 "burlywood1"
733 "sienna4"
734 "sienna3"
735 "sienna2"
736 "sienna1"
737 "IndianRed4"
738 "IndianRed3"
739 "IndianRed2"
740 "IndianRed1"
741 "RosyBrown4"
742 "RosyBrown3"
743 "RosyBrown2"
744 "RosyBrown1"
745 "DarkGoldenrod4"
746 "DarkGoldenrod3"
747 "DarkGoldenrod2"
748 "DarkGoldenrod1"
749 "goldenrod4"
750 "goldenrod3"
751 "goldenrod2"
752 "goldenrod1"
753 "gold4"
754 "gold3"
755 "gold2"
756 "gold1"
757 "yellow4"
758 "yellow3"
759 "yellow2"
760 "yellow1"
761 "LightYellow4"
762 "LightYellow3"
763 "LightYellow2"
764 "LightYellow1"
765 "LightGoldenrod4"
766 "LightGoldenrod3"
767 "LightGoldenrod2"
768 "LightGoldenrod1"
769 "khaki4"
770 "khaki3"
771 "khaki2"
772 "khaki1"
773 "DarkOliveGreen4"
774 "DarkOliveGreen3"
775 "DarkOliveGreen2"
776 "DarkOliveGreen1"
777 "OliveDrab4"
778 "OliveDrab3"
779 "OliveDrab2"
780 "OliveDrab1"
781 "chartreuse4"
782 "chartreuse3"
783 "chartreuse2"
784 "chartreuse1"
785 "green4"
786 "green3"
787 "green2"
788 "green1"
789 "SpringGreen4"
790 "SpringGreen3"
791 "SpringGreen2"
792 "SpringGreen1"
793 "PaleGreen4"
794 "PaleGreen3"
795 "PaleGreen2"
796 "PaleGreen1"
797 "SeaGreen4"
798 "SeaGreen3"
799 "SeaGreen2"
800 "SeaGreen1"
801 "DarkSeaGreen4"
802 "DarkSeaGreen3"
803 "DarkSeaGreen2"
804 "DarkSeaGreen1"
805 "aquamarine4"
806 "aquamarine3"
807 "aquamarine2"
808 "aquamarine1"
809 "DarkSlateGray4"
810 "DarkSlateGray3"
811 "DarkSlateGray2"
812 "DarkSlateGray1"
813 "cyan4"
814 "cyan3"
815 "cyan2"
816 "cyan1"
817 "turquoise4"
818 "turquoise3"
819 "turquoise2"
820 "turquoise1"
821 "CadetBlue4"
822 "CadetBlue3"
823 "CadetBlue2"
824 "CadetBlue1"
825 "PaleTurquoise4"
826 "PaleTurquoise3"
827 "PaleTurquoise2"
828 "PaleTurquoise1"
829 "LightCyan4"
830 "LightCyan3"
831 "LightCyan2"
832 "LightCyan1"
833 "LightBlue4"
834 "LightBlue3"
835 "LightBlue2"
836 "LightBlue1"
837 "LightSteelBlue4"
838 "LightSteelBlue3"
839 "LightSteelBlue2"
840 "LightSteelBlue1"
841 "SlateGray4"
842 "SlateGray3"
843 "SlateGray2"
844 "SlateGray1"
845 "LightSkyBlue4"
846 "LightSkyBlue3"
847 "LightSkyBlue2"
848 "LightSkyBlue1"
849 "SkyBlue4"
850 "SkyBlue3"
851 "SkyBlue2"
852 "SkyBlue1"
853 "DeepSkyBlue4"
854 "DeepSkyBlue3"
855 "DeepSkyBlue2"
856 "DeepSkyBlue1"
857 "SteelBlue4"
858 "SteelBlue3"
859 "SteelBlue2"
860 "SteelBlue1"
861 "DodgerBlue4"
862 "DodgerBlue3"
863 "DodgerBlue2"
864 "DodgerBlue1"
865 "blue4"
866 "blue3"
867 "blue2"
868 "blue1"
869 "RoyalBlue4"
870 "RoyalBlue3"
871 "RoyalBlue2"
872 "RoyalBlue1"
873 "SlateBlue4"
874 "SlateBlue3"
875 "SlateBlue2"
876 "SlateBlue1"
877 "azure4"
878 "azure3"
879 "azure2"
880 "azure1"
881 "MistyRose4"
882 "MistyRose3"
883 "MistyRose2"
884 "MistyRose1"
885 "LavenderBlush4"
886 "LavenderBlush3"
887 "LavenderBlush2"
888 "LavenderBlush1"
889 "honeydew4"
890 "honeydew3"
891 "honeydew2"
892 "honeydew1"
893 "ivory4"
894 "ivory3"
895 "ivory2"
896 "ivory1"
897 "cornsilk4"
898 "cornsilk3"
899 "cornsilk2"
900 "cornsilk1"
901 "LemonChiffon4"
902 "LemonChiffon3"
903 "LemonChiffon2"
904 "LemonChiffon1"
905 "NavajoWhite4"
906 "NavajoWhite3"
907 "NavajoWhite2"
908 "NavajoWhite1"
909 "PeachPuff4"
910 "PeachPuff3"
911 "PeachPuff2"
912 "PeachPuff1"
913 "bisque4"
914 "bisque3"
915 "bisque2"
916 "bisque1"
917 "AntiqueWhite4"
918 "AntiqueWhite3"
919 "AntiqueWhite2"
920 "AntiqueWhite1"
921 "seashell4"
922 "seashell3"
923 "seashell2"
924 "seashell1"
925 "snow4"
926 "snow3"
927 "snow2"
928 "snow1"
929 "thistle"
930 "MediumPurple"
931 "medium purple"
932 "purple"
933 "BlueViolet"
934 "blue violet"
935 "DarkViolet"
936 "dark violet"
937 "DarkOrchid"
938 "dark orchid"
939 "MediumOrchid"
940 "medium orchid"
941 "orchid"
942 "plum"
943 "violet"
944 "magenta"
945 "VioletRed"
946 "violet red"
947 "MediumVioletRed"
948 "medium violet red"
949 "maroon"
950 "PaleVioletRed"
951 "pale violet red"
952 "LightPink"
953 "light pink"
954 "pink"
955 "DeepPink"
956 "deep pink"
957 "HotPink"
958 "hot pink"
959 "red"
960 "OrangeRed"
961 "orange red"
962 "tomato"
963 "LightCoral"
964 "light coral"
965 "coral"
966 "DarkOrange"
967 "dark orange"
968 "orange"
969 "LightSalmon"
970 "light salmon"
971 "salmon"
972 "DarkSalmon"
973 "dark salmon"
974 "brown"
975 "firebrick"
976 "chocolate"
977 "tan"
978 "SandyBrown"
979 "sandy brown"
980 "wheat"
981 "beige"
982 "burlywood"
983 "peru"
984 "sienna"
985 "SaddleBrown"
986 "saddle brown"
987 "IndianRed"
988 "indian red"
989 "RosyBrown"
990 "rosy brown"
991 "DarkGoldenrod"
992 "dark goldenrod"
993 "goldenrod"
994 "LightGoldenrod"
995 "light goldenrod"
996 "gold"
997 "yellow"
998 "LightYellow"
999 "light yellow"
1000 "LightGoldenrodYellow"
1001 "light goldenrod yellow"
1002 "PaleGoldenrod"
1003 "pale goldenrod"
1004 "khaki"
1005 "DarkKhaki"
1006 "dark khaki"
1007 "OliveDrab"
1008 "olive drab"
1009 "ForestGreen"
1010 "forest green"
1011 "YellowGreen"
1012 "yellow green"
1013 "LimeGreen"
1014 "lime green"
1015 "GreenYellow"
1016 "green yellow"
1017 "MediumSpringGreen"
1018 "medium spring green"
1019 "chartreuse"
1020 "green"
1021 "LawnGreen"
1022 "lawn green"
1023 "SpringGreen"
1024 "spring green"
1025 "PaleGreen"
1026 "pale green"
1027 "LightSeaGreen"
1028 "light sea green"
1029 "MediumSeaGreen"
1030 "medium sea green"
1031 "SeaGreen"
1032 "sea green"
1033 "DarkSeaGreen"
1034 "dark sea green"
1035 "DarkOliveGreen"
1036 "dark olive green"
1037 "DarkGreen"
1038 "dark green"
1039 "aquamarine"
1040 "MediumAquamarine"
1041 "medium aquamarine"
1042 "CadetBlue"
1043 "cadet blue"
1044 "LightCyan"
1045 "light cyan"
1046 "cyan"
1047 "turquoise"
1048 "MediumTurquoise"
1049 "medium turquoise"
1050 "DarkTurquoise"
1051 "dark turquoise"
1052 "PaleTurquoise"
1053 "pale turquoise"
1054 "PowderBlue"
1055 "powder blue"
1056 "LightBlue"
1057 "light blue"
1058 "LightSteelBlue"
1059 "light steel blue"
1060 "SteelBlue"
1061 "steel blue"
1062 "LightSkyBlue"
1063 "light sky blue"
1064 "SkyBlue"
1065 "sky blue"
1066 "DeepSkyBlue"
1067 "deep sky blue"
1068 "DodgerBlue"
1069 "dodger blue"
1070 "blue"
1071 "RoyalBlue"
1072 "royal blue"
1073 "MediumBlue"
1074 "medium blue"
1075 "LightSlateBlue"
1076 "light slate blue"
1077 "MediumSlateBlue"
1078 "medium slate blue"
1079 "SlateBlue"
1080 "slate blue"
1081 "DarkSlateBlue"
1082 "dark slate blue"
1083 "CornflowerBlue"
1084 "cornflower blue"
1085 "NavyBlue"
1086 "navy blue"
1087 "navy"
1088 "MidnightBlue"
1089 "midnight blue"
1090 "LightGray"
1091 "light gray"
1092 "LightGrey"
1093 "light grey"
1094 "grey"
1095 "gray"
1096 "LightSlateGrey"
1097 "light slate grey"
1098 "LightSlateGray"
1099 "light slate gray"
1100 "SlateGrey"
1101 "slate grey"
1102 "SlateGray"
1103 "slate gray"
1104 "DimGrey"
1105 "dim grey"
1106 "DimGray"
1107 "dim gray"
1108 "DarkSlateGrey"
1109 "dark slate grey"
1110 "DarkSlateGray"
1111 "dark slate gray"
1112 "black"
1113 "white"
1114 "MistyRose"
1115 "misty rose"
1116 "LavenderBlush"
1117 "lavender blush"
1118 "lavender"
1119 "AliceBlue"
1120 "alice blue"
1121 "azure"
1122 "MintCream"
1123 "mint cream"
1124 "honeydew"
1125 "seashell"
1126 "LemonChiffon"
1127 "lemon chiffon"
1128 "ivory"
1129 "cornsilk"
1130 "moccasin"
1131 "NavajoWhite"
1132 "navajo white"
1133 "PeachPuff"
1134 "peach puff"
1135 "bisque"
1136 "BlanchedAlmond"
1137 "blanched almond"
1138 "PapayaWhip"
1139 "papaya whip"
1140 "AntiqueWhite"
1141 "antique white"
1142 "linen"
1143 "OldLace"
1144 "old lace"
1145 "FloralWhite"
1146 "floral white"
1147 "gainsboro"
1148 "WhiteSmoke"
1149 "white smoke"
1150 "GhostWhite"
1151 "ghost white"
1152 "snow")
1153 "The list of X colors from the `rgb.txt' file.
1154 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1155
1156 (defun xw-defined-colors (&optional frame)
1157 "Internal function called by `defined-colors', which see."
1158 (or frame (setq frame (selected-frame)))
1159 (let ((all-colors x-colors)
1160 (this-color nil)
1161 (defined-colors nil))
1162 (while all-colors
1163 (setq this-color (car all-colors)
1164 all-colors (cdr all-colors))
1165 (and (color-supported-p this-color frame t)
1166 (setq defined-colors (cons this-color defined-colors))))
1167 defined-colors))
1168 \f
1169 ;;;; Function keys
1170
1171 ;; Map certain keypad keys into ASCII characters
1172 ;; that people usually expect.
1173 (define-key function-key-map [backspace] [127])
1174 (define-key function-key-map [delete] [127])
1175 (define-key function-key-map [tab] [?\t])
1176 (define-key function-key-map [linefeed] [?\n])
1177 (define-key function-key-map [clear] [?\C-l])
1178 (define-key function-key-map [return] [?\C-m])
1179 (define-key function-key-map [escape] [?\e])
1180 (define-key function-key-map [M-backspace] [?\M-\d])
1181 (define-key function-key-map [M-delete] [?\M-\d])
1182 (define-key function-key-map [M-tab] [?\M-\t])
1183 (define-key function-key-map [M-linefeed] [?\M-\n])
1184 (define-key function-key-map [M-clear] [?\M-\C-l])
1185 (define-key function-key-map [M-return] [?\M-\C-m])
1186 (define-key function-key-map [M-escape] [?\M-\e])
1187 (define-key function-key-map [iso-lefttab] [backtab])
1188 (define-key function-key-map [S-iso-lefttab] [backtab])
1189
1190 ;; These tell read-char how to convert
1191 ;; these special chars to ASCII.
1192 (put 'backspace 'ascii-character 127)
1193 (put 'delete 'ascii-character 127)
1194 (put 'tab 'ascii-character ?\t)
1195 (put 'linefeed 'ascii-character ?\n)
1196 (put 'clear 'ascii-character 12)
1197 (put 'return 'ascii-character 13)
1198 (put 'escape 'ascii-character ?\e)
1199
1200 \f
1201 ;;;; Keysyms
1202
1203 (defun vendor-specific-keysyms (vendor)
1204 "Return the appropriate value of `system-key-alist' for VENDOR.
1205 VENDOR is a string containing the name of the X Server's vendor,
1206 as returned by `x-server-vendor'."
1207 ;; Fixme: Drop Apollo now?
1208 (cond ((string-equal vendor "Apollo Computer Inc.")
1209 '((65280 . linedel)
1210 (65281 . chardel)
1211 (65282 . copy)
1212 (65283 . cut)
1213 (65284 . paste)
1214 (65285 . move)
1215 (65286 . grow)
1216 (65287 . cmd)
1217 (65288 . shell)
1218 (65289 . leftbar)
1219 (65290 . rightbar)
1220 (65291 . leftbox)
1221 (65292 . rightbox)
1222 (65293 . upbox)
1223 (65294 . downbox)
1224 (65295 . pop)
1225 (65296 . read)
1226 (65297 . edit)
1227 (65298 . save)
1228 (65299 . exit)
1229 (65300 . repeat)))
1230 ((or (string-equal vendor "Hewlett-Packard Incorporated")
1231 (string-equal vendor "Hewlett-Packard Company"))
1232 '(( 168 . mute-acute)
1233 ( 169 . mute-grave)
1234 ( 170 . mute-asciicircum)
1235 ( 171 . mute-diaeresis)
1236 ( 172 . mute-asciitilde)
1237 ( 175 . lira)
1238 ( 190 . guilder)
1239 ( 252 . block)
1240 ( 256 . longminus)
1241 (65388 . reset)
1242 (65389 . system)
1243 (65390 . user)
1244 (65391 . clearline)
1245 (65392 . insertline)
1246 (65393 . deleteline)
1247 (65394 . insertchar)
1248 (65395 . deletechar)
1249 (65396 . backtab)
1250 (65397 . kp-backtab)))
1251 ;; Fixme: What about non-X11/NeWS sun server?
1252 ((or (string-equal vendor "X11/NeWS - Sun Microsystems Inc.")
1253 (string-equal vendor "X Consortium"))
1254 '((392976 . f36)
1255 (392977 . f37)
1256 (393056 . req)
1257 ;; These are for Sun under X11R6
1258 (393072 . props)
1259 (393073 . front)
1260 (393074 . copy)
1261 (393075 . open)
1262 (393076 . paste)
1263 (393077 . cut)))
1264 (t
1265 ;; This is used by DEC's X server.
1266 '((65280 . remove)))))
1267
1268 (let ((i 160))
1269 (while (< i 256)
1270 (puthash i (make-char 'latin-iso8859-1 i) x-keysym-table)
1271 (setq i (1+ i))))
1272
1273 ;; Table from Kuhn's proposed additions to the `KEYSYM Encoding'
1274 ;; appendix to the X protocol definition.
1275 (dolist
1276 (pair
1277 '(
1278 ;; Latin-2
1279 (#x1a1 . ?\e,B!\e(B)
1280 (#x1a2 . ?\e,B"\e(B)
1281 (#x1a3 . ?\e,B#\e(B)
1282 (#x1a5 . ?\e,B%\e(B)
1283 (#x1a6 . ?\e,B&\e(B)
1284 (#x1a9 . ?\e,B)\e(B)
1285 (#x1aa . ?\e,B*\e(B)
1286 (#x1ab . ?\e,B+\e(B)
1287 (#x1ac . ?\e,B,\e(B)
1288 (#x1ae . ?\e,B.\e(B)
1289 (#x1af . ?\e,B/\e(B)
1290 (#x1b1 . ?\e,B1\e(B)
1291 (#x1b2 . ?\e,B2\e(B)
1292 (#x1b3 . ?\e,B3\e(B)
1293 (#x1b5 . ?\e,B5\e(B)
1294 (#x1b6 . ?\e,B6\e(B)
1295 (#x1b7 . ?\e,B7\e(B)
1296 (#x1b9 . ?\e,B9\e(B)
1297 (#x1ba . ?\e,B:\e(B)
1298 (#x1bb . ?\e,B;\e(B)
1299 (#x1bc . ?\e,B<\e(B)
1300 (#x1bd . ?\e,B=\e(B)
1301 (#x1be . ?\e,B>\e(B)
1302 (#x1bf . ?\e,B?\e(B)
1303 (#x1c0 . ?\e,B@\e(B)
1304 (#x1c3 . ?\e,BC\e(B)
1305 (#x1c5 . ?\e,BE\e(B)
1306 (#x1c6 . ?\e,BF\e(B)
1307 (#x1c8 . ?\e,BH\e(B)
1308 (#x1ca . ?\e,BJ\e(B)
1309 (#x1cc . ?\e,BL\e(B)
1310 (#x1cf . ?\e,BO\e(B)
1311 (#x1d0 . ?\e,BP\e(B)
1312 (#x1d1 . ?\e,BQ\e(B)
1313 (#x1d2 . ?\e,BR\e(B)
1314 (#x1d5 . ?\e,BU\e(B)
1315 (#x1d8 . ?\e,BX\e(B)
1316 (#x1d9 . ?\e,BY\e(B)
1317 (#x1db . ?\e,B[\e(B)
1318 (#x1de . ?\e,B^\e(B)
1319 (#x1e0 . ?\e,B`\e(B)
1320 (#x1e3 . ?\e,Bc\e(B)
1321 (#x1e5 . ?\e,Be\e(B)
1322 (#x1e6 . ?\e,Bf\e(B)
1323 (#x1e8 . ?\e,Bh\e(B)
1324 (#x1ea . ?\e,Bj\e(B)
1325 (#x1ec . ?\e,Bl\e(B)
1326 (#x1ef . ?\e,Bo\e(B)
1327 (#x1f0 . ?\e,Bp\e(B)
1328 (#x1f1 . ?\e,Bq\e(B)
1329 (#x1f2 . ?\e,Br\e(B)
1330 (#x1f5 . ?\e,Bu\e(B)
1331 (#x1f8 . ?\e,Bx\e(B)
1332 (#x1f9 . ?\e,By\e(B)
1333 (#x1fb . ?\e,B{\e(B)
1334 (#x1fe . ?\e,B~\e(B)
1335 (#x1ff . ?\e,B\7f\e(B)
1336 ;; Latin-3
1337 (#x2a1 . ?\e,C!\e(B)
1338 (#x2a6 . ?\e,C&\e(B)
1339 (#x2a9 . ?\e,C)\e(B)
1340 (#x2ab . ?\e,C+\e(B)
1341 (#x2ac . ?\e,C,\e(B)
1342 (#x2b1 . ?\e,C1\e(B)
1343 (#x2b6 . ?\e,C6\e(B)
1344 (#x2b9 . ?\e,C9\e(B)
1345 (#x2bb . ?\e,C;\e(B)
1346 (#x2bc . ?\e,C<\e(B)
1347 (#x2c5 . ?\e,CE\e(B)
1348 (#x2c6 . ?\e,CF\e(B)
1349 (#x2d5 . ?\e,CU\e(B)
1350 (#x2d8 . ?\e,CX\e(B)
1351 (#x2dd . ?\e,C]\e(B)
1352 (#x2de . ?\e,C^\e(B)
1353 (#x2e5 . ?\e,Ce\e(B)
1354 (#x2e6 . ?\e,Cf\e(B)
1355 (#x2f5 . ?\e,Cu\e(B)
1356 (#x2f8 . ?\e,Cx\e(B)
1357 (#x2fd . ?\e,C}\e(B)
1358 (#x2fe . ?\e,C~\e(B)
1359 ;; Latin-4
1360 (#x3a2 . ?\e,D"\e(B)
1361 (#x3a3 . ?\e,D#\e(B)
1362 (#x3a5 . ?\e,D%\e(B)
1363 (#x3a6 . ?\e,D&\e(B)
1364 (#x3aa . ?\e,D*\e(B)
1365 (#x3ab . ?\e,D+\e(B)
1366 (#x3ac . ?\e,D,\e(B)
1367 (#x3b3 . ?\e,D3\e(B)
1368 (#x3b5 . ?\e,D5\e(B)
1369 (#x3b6 . ?\e,D6\e(B)
1370 (#x3ba . ?\e,D:\e(B)
1371 (#x3bb . ?\e,D;\e(B)
1372 (#x3bc . ?\e,D<\e(B)
1373 (#x3bd . ?\e,D=\e(B)
1374 (#x3bf . ?\e,D?\e(B)
1375 (#x3c0 . ?\e,D@\e(B)
1376 (#x3c7 . ?\e,DG\e(B)
1377 (#x3cc . ?\e,DL\e(B)
1378 (#x3cf . ?\e,DO\e(B)
1379 (#x3d1 . ?\e,DQ\e(B)
1380 (#x3d2 . ?\e,DR\e(B)
1381 (#x3d3 . ?\e,DS\e(B)
1382 (#x3d9 . ?\e,DY\e(B)
1383 (#x3dd . ?\e,D]\e(B)
1384 (#x3de . ?\e,D^\e(B)
1385 (#x3e0 . ?\e,D`\e(B)
1386 (#x3e7 . ?\e,Dg\e(B)
1387 (#x3ec . ?\e,Dl\e(B)
1388 (#x3ef . ?\e,Do\e(B)
1389 (#x3f1 . ?\e,Dq\e(B)
1390 (#x3f2 . ?\e,Dr\e(B)
1391 (#x3f3 . ?\e,Ds\e(B)
1392 (#x3f9 . ?\e,Dy\e(B)
1393 (#x3fd . ?\e,D}\e(B)
1394 (#x3fe . ?\e,D~\e(B)
1395 ;; Kana: Fixme: needs conversion to Japanese charset -- seems
1396 ;; to require jisx0213, for which the Unicode translation
1397 ;; isn't clear.
1398 (#x47e . ?\e$,1s>\e(B)
1399 (#x4a1 . ?\e$,2=B\e(B)
1400 (#x4a2 . ?\\e$,2=L\e(B)
1401 (#x4a3 . ?\\e$,2=M\e(B)
1402 (#x4a4 . ?\e$,2=A\e(B)
1403 (#x4a5 . ?\e$,2?{\e(B)
1404 (#x4a6 . ?\e$,2?r\e(B)
1405 (#x4a7 . ?\e$,2?!\e(B)
1406 (#x4a8 . ?\e$,2?#\e(B)
1407 (#x4a9 . ?\e$,2?%\e(B)
1408 (#x4aa . ?\e$,2?'\e(B)
1409 (#x4ab . ?\e$,2?)\e(B)
1410 (#x4ac . ?\e$,2?c\e(B)
1411 (#x4ad . ?\e$,2?e\e(B)
1412 (#x4ae . ?\e$,2?g\e(B)
1413 (#x4af . ?\e$,2?C\e(B)
1414 (#x4b0 . ?\e$,2?|\e(B)
1415 (#x4b1 . ?\e$,2?"\e(B)
1416 (#x4b2 . ?\e$,2?$\e(B)
1417 (#x4b3 . ?\e$,2?&\e(B)
1418 (#x4b4 . ?\e$,2?(\e(B)
1419 (#x4b5 . ?\e$,2?*\e(B)
1420 (#x4b6 . ?\e$,2?+\e(B)
1421 (#x4b7 . ?\e$,2?-\e(B)
1422 (#x4b8 . ?\e$,2?/\e(B)
1423 (#x4b9 . ?\e$,2?1\e(B)
1424 (#x4ba . ?\e$,2?3\e(B)
1425 (#x4bb . ?\e$,2?5\e(B)
1426 (#x4bc . ?\e$,2?7\e(B)
1427 (#x4bd . ?\e$,2?9\e(B)
1428 (#x4be . ?\e$,2?;\e(B)
1429 (#x4bf . ?\e$,2?=\e(B)
1430 (#x4c0 . ?\e$,2??\e(B)
1431 (#x4c1 . ?\e$,2?A\e(B)
1432 (#x4c2 . ?\e$,2?D\e(B)
1433 (#x4c3 . ?\e$,2?F\e(B)
1434 (#x4c4 . ?\e$,2?H\e(B)
1435 (#x4c5 . ?\e$,2?J\e(B)
1436 (#x4c6 . ?\e$,2?K\e(B)
1437 (#x4c7 . ?\e$,2?L\e(B)
1438 (#x4c8 . ?\e$,2?M\e(B)
1439 (#x4c9 . ?\e$,2?N\e(B)
1440 (#x4ca . ?\e$,2?O\e(B)
1441 (#x4cb . ?\e$,2?R\e(B)
1442 (#x4cc . ?\e$,2?U\e(B)
1443 (#x4cd . ?\e$,2?X\e(B)
1444 (#x4ce . ?\e$,2?[\e(B)
1445 (#x4cf . ?\e$,2?^\e(B)
1446 (#x4d0 . ?\e$,2?_\e(B)
1447 (#x4d1 . ?\e$,2?`\e(B)
1448 (#x4d2 . ?\e$,2?a\e(B)
1449 (#x4d3 . ?\e$,2?b\e(B)
1450 (#x4d4 . ?\e$,2?d\e(B)
1451 (#x4d5 . ?\e$,2?f\e(B)
1452 (#x4d6 . ?\e$,2?h\e(B)
1453 (#x4d7 . ?\e$,2?i\e(B)
1454 (#x4d8 . ?\e$,2?j\e(B)
1455 (#x4d9 . ?\e$,2?k\e(B)
1456 (#x4da . ?\e$,2?l\e(B)
1457 (#x4db . ?\e$,2?m\e(B)
1458 (#x4dc . ?\e$,2?o\e(B)
1459 (#x4dd . ?\e$,2?s\e(B)
1460 (#x4de . ?\e$,2>{\e(B)
1461 (#x4df . ?\e$,2>|\e(B)
1462 ;; Arabic
1463 (#x5ac . ?\e,G,\e(B)
1464 (#x5bb . ?\e,G;\e(B)
1465 (#x5bf . ?\e,G?\e(B)
1466 (#x5c1 . ?\e,GA\e(B)
1467 (#x5c2 . ?\e,GB\e(B)
1468 (#x5c3 . ?\e,GC\e(B)
1469 (#x5c4 . ?\e,GD\e(B)
1470 (#x5c5 . ?\e,GE\e(B)
1471 (#x5c6 . ?\e,GF\e(B)
1472 (#x5c7 . ?\e,GG\e(B)
1473 (#x5c8 . ?\e,GH\e(B)
1474 (#x5c9 . ?\e,GI\e(B)
1475 (#x5ca . ?\e,GJ\e(B)
1476 (#x5cb . ?\e,GK\e(B)
1477 (#x5cc . ?\e,GL\e(B)
1478 (#x5cd . ?\e,GM\e(B)
1479 (#x5ce . ?\e,GN\e(B)
1480 (#x5cf . ?\e,GO\e(B)
1481 (#x5d0 . ?\e,GP\e(B)
1482 (#x5d1 . ?\e,GQ\e(B)
1483 (#x5d2 . ?\e,GR\e(B)
1484 (#x5d3 . ?\e,GS\e(B)
1485 (#x5d4 . ?\e,GT\e(B)
1486 (#x5d5 . ?\e,GU\e(B)
1487 (#x5d6 . ?\e,GV\e(B)
1488 (#x5d7 . ?\e,GW\e(B)
1489 (#x5d8 . ?\e,GX\e(B)
1490 (#x5d9 . ?\e,GY\e(B)
1491 (#x5da . ?\e,GZ\e(B)
1492 (#x5e0 . ?\e,G`\e(B)
1493 (#x5e1 . ?\e,Ga\e(B)
1494 (#x5e2 . ?\e,Gb\e(B)
1495 (#x5e3 . ?\e,Gc\e(B)
1496 (#x5e4 . ?\e,Gd\e(B)
1497 (#x5e5 . ?\e,Ge\e(B)
1498 (#x5e6 . ?\e,Gf\e(B)
1499 (#x5e7 . ?\e,Gg\e(B)
1500 (#x5e8 . ?\e,Gh\e(B)
1501 (#x5e9 . ?\e,Gi\e(B)
1502 (#x5ea . ?\e,Gj\e(B)
1503 (#x5eb . ?\e,Gk\e(B)
1504 (#x5ec . ?\e,Gl\e(B)
1505 (#x5ed . ?\e,Gm\e(B)
1506 (#x5ee . ?\e,Gn\e(B)
1507 (#x5ef . ?\e,Go\e(B)
1508 (#x5f0 . ?\e,Gp\e(B)
1509 (#x5f1 . ?\e,Gq\e(B)
1510 (#x5f2 . ?\e,Gr\e(B)
1511 ;; Cyrillic
1512 (#x6a1 . ?\e,Lr\e(B)
1513 (#x6a2 . ?\e,Ls\e(B)
1514 (#x6a3 . ?\e,Lq\e(B)
1515 (#x6a4 . ?\e,Lt\e(B)
1516 (#x6a5 . ?\e,Lu\e(B)
1517 (#x6a6 . ?\e,Lv\e(B)
1518 (#x6a7 . ?\e,Lw\e(B)
1519 (#x6a8 . ?\e,Lx\e(B)
1520 (#x6a9 . ?\e,Ly\e(B)
1521 (#x6aa . ?\e,Lz\e(B)
1522 (#x6ab . ?\e,L{\e(B)
1523 (#x6ac . ?\e,L|\e(B)
1524 (#x6ae . ?\e,L~\e(B)
1525 (#x6af . ?\e,L\7f\e(B)
1526 (#x6b0 . ?\e,Lp\e(B)
1527 (#x6b1 . ?\e,L"\e(B)
1528 (#x6b2 . ?\e,L#\e(B)
1529 (#x6b3 . ?\e,L!\e(B)
1530 (#x6b4 . ?\e,L$\e(B)
1531 (#x6b5 . ?\e,L%\e(B)
1532 (#x6b6 . ?\e,L&\e(B)
1533 (#x6b7 . ?\e,L'\e(B)
1534 (#x6b8 . ?\e,L(\e(B)
1535 (#x6b9 . ?\e,L)\e(B)
1536 (#x6ba . ?\e,L*\e(B)
1537 (#x6bb . ?\e,L+\e(B)
1538 (#x6bc . ?\e,L,\e(B)
1539 (#x6be . ?\e,L.\e(B)
1540 (#x6bf . ?\e,L/\e(B)
1541 (#x6c0 . ?\e,Ln\e(B)
1542 (#x6c1 . ?\e,LP\e(B)
1543 (#x6c2 . ?\e,LQ\e(B)
1544 (#x6c3 . ?\e,Lf\e(B)
1545 (#x6c4 . ?\e,LT\e(B)
1546 (#x6c5 . ?\e,LU\e(B)
1547 (#x6c6 . ?\e,Ld\e(B)
1548 (#x6c7 . ?\e,LS\e(B)
1549 (#x6c8 . ?\e,Le\e(B)
1550 (#x6c9 . ?\e,LX\e(B)
1551 (#x6ca . ?\e,LY\e(B)
1552 (#x6cb . ?\e,LZ\e(B)
1553 (#x6cc . ?\e,L[\e(B)
1554 (#x6cd . ?\e,L\\e(B)
1555 (#x6ce . ?\e,L]\e(B)
1556 (#x6cf . ?\e,L^\e(B)
1557 (#x6d0 . ?\e,L_\e(B)
1558 (#x6d1 . ?\e,Lo\e(B)
1559 (#x6d2 . ?\e,L`\e(B)
1560 (#x6d3 . ?\e,La\e(B)
1561 (#x6d4 . ?\e,Lb\e(B)
1562 (#x6d5 . ?\e,Lc\e(B)
1563 (#x6d6 . ?\e,LV\e(B)
1564 (#x6d7 . ?\e,LR\e(B)
1565 (#x6d8 . ?\e,Ll\e(B)
1566 (#x6d9 . ?\e,Lk\e(B)
1567 (#x6da . ?\e,LW\e(B)
1568 (#x6db . ?\e,Lh\e(B)
1569 (#x6dc . ?\e,Lm\e(B)
1570 (#x6dd . ?\e,Li\e(B)
1571 (#x6de . ?\e,Lg\e(B)
1572 (#x6df . ?\e,Lj\e(B)
1573 (#x6e0 . ?\e,LN\e(B)
1574 (#x6e1 . ?\e,L0\e(B)
1575 (#x6e2 . ?\e,L1\e(B)
1576 (#x6e3 . ?\e,LF\e(B)
1577 (#x6e4 . ?\e,L4\e(B)
1578 (#x6e5 . ?\e,L5\e(B)
1579 (#x6e6 . ?\e,LD\e(B)
1580 (#x6e7 . ?\e,L3\e(B)
1581 (#x6e8 . ?\e,LE\e(B)
1582 (#x6e9 . ?\e,L8\e(B)
1583 (#x6ea . ?\e,L9\e(B)
1584 (#x6eb . ?\e,L:\e(B)
1585 (#x6ec . ?\e,L;\e(B)
1586 (#x6ed . ?\e,L<\e(B)
1587 (#x6ee . ?\e,L=\e(B)
1588 (#x6ef . ?\e,L>\e(B)
1589 (#x6f0 . ?\e,L?\e(B)
1590 (#x6f1 . ?\e,LO\e(B)
1591 (#x6f2 . ?\e,L@\e(B)
1592 (#x6f3 . ?\e,LA\e(B)
1593 (#x6f4 . ?\e,LB\e(B)
1594 (#x6f5 . ?\e,LC\e(B)
1595 (#x6f6 . ?\e,L6\e(B)
1596 (#x6f7 . ?\e,L2\e(B)
1597 (#x6f8 . ?\e,LL\e(B)
1598 (#x6f9 . ?\e,LK\e(B)
1599 (#x6fa . ?\e,L7\e(B)
1600 (#x6fb . ?\e,LH\e(B)
1601 (#x6fc . ?\e,LM\e(B)
1602 (#x6fd . ?\e,LI\e(B)
1603 (#x6fe . ?\e,LG\e(B)
1604 (#x6ff . ?\e,LJ\e(B)
1605 ;; Greek
1606 (#x7a1 . ?\e,F6\e(B)
1607 (#x7a2 . ?\e,F8\e(B)
1608 (#x7a3 . ?\e,F9\e(B)
1609 (#x7a4 . ?\e,F:\e(B)
1610 (#x7a5 . ?\e,FZ\e(B)
1611 (#x7a7 . ?\e,F<\e(B)
1612 (#x7a8 . ?\e,F>\e(B)
1613 (#x7a9 . ?\e,F[\e(B)
1614 (#x7ab . ?\e,F?\e(B)
1615 (#x7ae . ?\e,F5\e(B)
1616 (#x7af . ?\e,F/\e(B)
1617 (#x7b1 . ?\e,F\\e(B)
1618 (#x7b2 . ?\e,F]\e(B)
1619 (#x7b3 . ?\e,F^\e(B)
1620 (#x7b4 . ?\e,F_\e(B)
1621 (#x7b5 . ?\e,Fz\e(B)
1622 (#x7b6 . ?\e,F@\e(B)
1623 (#x7b7 . ?\e,F|\e(B)
1624 (#x7b8 . ?\e,F}\e(B)
1625 (#x7b9 . ?\e,F{\e(B)
1626 (#x7ba . ?\e,F`\e(B)
1627 (#x7bb . ?\e,F~\e(B)
1628 (#x7c1 . ?\e,FA\e(B)
1629 (#x7c2 . ?\e,FB\e(B)
1630 (#x7c3 . ?\e,FC\e(B)
1631 (#x7c4 . ?\e,FD\e(B)
1632 (#x7c5 . ?\e,FE\e(B)
1633 (#x7c6 . ?\e,FF\e(B)
1634 (#x7c7 . ?\e,FG\e(B)
1635 (#x7c8 . ?\e,FH\e(B)
1636 (#x7c9 . ?\e,FI\e(B)
1637 (#x7ca . ?\e,FJ\e(B)
1638 (#x7cb . ?\e,FK\e(B)
1639 (#x7cc . ?\e,FL\e(B)
1640 (#x7cd . ?\e,FM\e(B)
1641 (#x7ce . ?\e,FN\e(B)
1642 (#x7cf . ?\e,FO\e(B)
1643 (#x7d0 . ?\e,FP\e(B)
1644 (#x7d1 . ?\e,FQ\e(B)
1645 (#x7d2 . ?\e,FS\e(B)
1646 (#x7d4 . ?\e,FT\e(B)
1647 (#x7d5 . ?\e,FU\e(B)
1648 (#x7d6 . ?\e,FV\e(B)
1649 (#x7d7 . ?\e,FW\e(B)
1650 (#x7d8 . ?\e,FX\e(B)
1651 (#x7d9 . ?\e,FY\e(B)
1652 (#x7e1 . ?\e,Fa\e(B)
1653 (#x7e2 . ?\e,Fb\e(B)
1654 (#x7e3 . ?\e,Fc\e(B)
1655 (#x7e4 . ?\e,Fd\e(B)
1656 (#x7e5 . ?\e,Fe\e(B)
1657 (#x7e6 . ?\e,Ff\e(B)
1658 (#x7e7 . ?\e,Fg\e(B)
1659 (#x7e8 . ?\e,Fh\e(B)
1660 (#x7e9 . ?\e,Fi\e(B)
1661 (#x7ea . ?\e,Fj\e(B)
1662 (#x7eb . ?\e,Fk\e(B)
1663 (#x7ec . ?\e,Fl\e(B)
1664 (#x7ed . ?\e,Fm\e(B)
1665 (#x7ee . ?\e,Fn\e(B)
1666 (#x7ef . ?\e,Fo\e(B)
1667 (#x7f0 . ?\e,Fp\e(B)
1668 (#x7f1 . ?\e,Fq\e(B)
1669 (#x7f2 . ?\e,Fs\e(B)
1670 (#x7f3 . ?\e,Fr\e(B)
1671 (#x7f4 . ?\e,Ft\e(B)
1672 (#x7f5 . ?\e,Fu\e(B)
1673 (#x7f6 . ?\e,Fv\e(B)
1674 (#x7f7 . ?\e,Fw\e(B)
1675 (#x7f8 . ?\e,Fx\e(B)
1676 (#x7f9 . ?\e,Fy\e(B)
1677 ;; Technical
1678 (#x8a1 . ?\e$,1|W\e(B)
1679 (#x8a2 . ?\e$,2 ,\e(B)
1680 (#x8a3 . ?\e$,2 \e(B)
1681 (#x8a4 . ?\e$,1{ \e(B)
1682 (#x8a5 . ?\e$,1{!\e(B)
1683 (#x8a6 . ?\e$,2 "\e(B)
1684 (#x8a7 . ?\e$,1|A\e(B)
1685 (#x8a8 . ?\e$,1|C\e(B)
1686 (#x8a9 . ?\e$,1|D\e(B)
1687 (#x8aa . ?\e$,1|F\e(B)
1688 (#x8ab . ?\e$,1|;\e(B)
1689 (#x8ac . ?\e$,1|=\e(B)
1690 (#x8ad . ?\e$,1|>\e(B)
1691 (#x8ae . ?\e$,1|@\e(B)
1692 (#x8af . ?\e$,1|H\e(B)
1693 (#x8b0 . ?\e$,1|L\e(B)
1694 (#x8bc . ?\e$,1y$\e(B)
1695 (#x8bd . ?\e$,1y \e(B)
1696 (#x8be . ?\e$,1y%\e(B)
1697 (#x8bf . ?\e$,1xK\e(B)
1698 (#x8c0 . ?\e$,1xT\e(B)
1699 (#x8c1 . ?\e$,1x=\e(B)
1700 (#x8c2 . ?\e$,1x>\e(B)
1701 (#x8c5 . ?\e$,1x'\e(B)
1702 (#x8c8 . ?\e$,1x\\e(B)
1703 (#x8c9 . ?\e$,1xc\e(B)
1704 (#x8cd . ?\e$,1wT\e(B)
1705 (#x8ce . ?\e$,1wR\e(B)
1706 (#x8cf . ?\e$,1y!\e(B)
1707 (#x8d6 . ?\e$,1x:\e(B)
1708 (#x8da . ?\e$,1yB\e(B)
1709 (#x8db . ?\e$,1yC\e(B)
1710 (#x8dc . ?\e$,1xI\e(B)
1711 (#x8dd . ?\e$,1xJ\e(B)
1712 (#x8de . ?\e$,1xG\e(B)
1713 (#x8df . ?\e$,1xH\e(B)
1714 (#x8ef . ?\e$,1x"\e(B)
1715 (#x8f6 . ?\e$,1!R\e(B)
1716 (#x8fb . ?\e$,1vp\e(B)
1717 (#x8fc . ?\e$,1vq\e(B)
1718 (#x8fd . ?\e$,1vr\e(B)
1719 (#x8fe . ?\e$,1vs\e(B)
1720 ;; Special
1721 (#x9e0 . ?\e$,2"&\e(B)
1722 (#x9e1 . ?\e$,2!R\e(B)
1723 (#x9e2 . ?\e$,1}I\e(B)
1724 (#x9e3 . ?\e$,1}L\e(B)
1725 (#x9e4 . ?\e$,1}M\e(B)
1726 (#x9e5 . ?\e$,1}J\e(B)
1727 (#x9e8 . ?\e$,1}d\e(B)
1728 (#x9e9 . ?\e$,1}K\e(B)
1729 (#x9ea . ?\e$,2 8\e(B)
1730 (#x9eb . ?\e$,2 0\e(B)
1731 (#x9ec . ?\e$,2 ,\e(B)
1732 (#x9ed . ?\e$,2 4\e(B)
1733 (#x9ee . ?\e$,2 \\e(B)
1734 (#x9ef . ?\e$,1|Z\e(B)
1735 (#x9f0 . ?\e$,1|[\e(B)
1736 (#x9f1 . ?\e$,2 \e(B)
1737 (#x9f2 . ?\e$,1|\\e(B)
1738 (#x9f3 . ?\e$,1|]\e(B)
1739 (#x9f4 . ?\e$,2 <\e(B)
1740 (#x9f5 . ?\e$,2 D\e(B)
1741 (#x9f6 . ?\e$,2 T\e(B)
1742 (#x9f7 . ?\e$,2 L\e(B)
1743 (#x9f8 . ?\e$,2 "\e(B)
1744 ;; Publishing
1745 (#xaa1 . ?\e$,1rc\e(B)
1746 (#xaa2 . ?\e$,1rb\e(B)
1747 (#xaa3 . ?\e$,1rd\e(B)
1748 (#xaa4 . ?\e$,1re\e(B)
1749 (#xaa5 . ?\e$,1rg\e(B)
1750 (#xaa6 . ?\e$,1rh\e(B)
1751 (#xaa7 . ?\e$,1ri\e(B)
1752 (#xaa8 . ?\e$,1rj\e(B)
1753 (#xaa9 . ?\e$,1rt\e(B)
1754 (#xaaa . ?\e$,1rs\e(B)
1755 (#xaae . ?\e$,1s&\e(B)
1756 (#xaaf . ?\e$,1s%\e(B)
1757 (#xab0 . ?\e$,1v3\e(B)
1758 (#xab1 . ?\e$,1v4\e(B)
1759 (#xab2 . ?\e$,1v5\e(B)
1760 (#xab3 . ?\e$,1v6\e(B)
1761 (#xab4 . ?\e$,1v7\e(B)
1762 (#xab5 . ?\e$,1v8\e(B)
1763 (#xab6 . ?\e$,1v9\e(B)
1764 (#xab7 . ?\e$,1v:\e(B)
1765 (#xab8 . ?\e$,1uE\e(B)
1766 (#xabb . ?\e$,1rr\e(B)
1767 (#xabc . ?\e$,1{)\e(B)
1768 (#xabe . ?\e$,1{*\e(B)
1769 (#xac3 . ?\e$,1v;\e(B)
1770 (#xac4 . ?\e$,1v<\e(B)
1771 (#xac5 . ?\e$,1v=\e(B)
1772 (#xac6 . ?\e$,1v>\e(B)
1773 (#xac9 . ?\e$,1ub\e(B)
1774 (#xaca . ?\e$,2"s\e(B)
1775 (#xacc . ?\e$,2"!\e(B)
1776 (#xacd . ?\e$,2!w\e(B)
1777 (#xace . ?\e$,2"+\e(B)
1778 (#xacf . ?\e$,2!o\e(B)
1779 (#xad0 . ?\e$,1rx\e(B)
1780 (#xad1 . ?\e$,1ry\e(B)
1781 (#xad2 . ?\e$,1r|\e(B)
1782 (#xad3 . ?\e$,1r}\e(B)
1783 (#xad4 . ?\e$,1u^\e(B)
1784 (#xad6 . ?\e$,1s2\e(B)
1785 (#xad7 . ?\e$,1s3\e(B)
1786 (#xad9 . ?\e$,2%]\e(B)
1787 (#xadb . ?\e$,2!l\e(B)
1788 (#xadc . ?\e$,2" \e(B)
1789 (#xadd . ?\e$,2!v\e(B)
1790 (#xade . ?\e$,2"/\e(B)
1791 (#xadf . ?\e$,2!n\e(B)
1792 (#xae0 . ?\e$,2"F\e(B)
1793 (#xae1 . ?\e$,2!k\e(B)
1794 (#xae2 . ?\e$,2!m\e(B)
1795 (#xae3 . ?\e$,2!s\e(B)
1796 (#xae4 . ?\e$,2!}\e(B)
1797 (#xae5 . ?\e$,2"f\e(B)
1798 (#xae6 . ?\e$,1s"\e(B)
1799 (#xae7 . ?\e$,2!j\e(B)
1800 (#xae8 . ?\e$,2!r\e(B)
1801 (#xae9 . ?\e$,2!|\e(B)
1802 (#xaea . ?\e$,2"|\e(B)
1803 (#xaeb . ?\e$,2"~\e(B)
1804 (#xaec . ?\e$,2#c\e(B)
1805 (#xaed . ?\e$,2#f\e(B)
1806 (#xaee . ?\e$,2#e\e(B)
1807 (#xaf0 . ?\e$,2%`\e(B)
1808 (#xaf1 . ?\e$,1s \e(B)
1809 (#xaf2 . ?\e$,1s!\e(B)
1810 (#xaf3 . ?\e$,2%S\e(B)
1811 (#xaf4 . ?\e$,2%W\e(B)
1812 (#xaf5 . ?\e$,2#o\e(B)
1813 (#xaf6 . ?\e$,2#m\e(B)
1814 (#xaf7 . ?\e$,2#B\e(B)
1815 (#xaf8 . ?\e$,2#@\e(B)
1816 (#xaf9 . ?\e$,2"n\e(B)
1817 (#xafa . ?\e$,1zu\e(B)
1818 (#xafb . ?\e$,1uW\e(B)
1819 (#xafc . ?\e$,1s8\e(B)
1820 (#xafd . ?\e$,1rz\e(B)
1821 (#xafe . ?\e$,1r~\e(B)
1822 ;; APL
1823 (#xba3 . ?<)
1824 (#xba6 . ?>)
1825 (#xba8 . ?\e$,1xH\e(B)
1826 (#xba9 . ?\e$,1xG\e(B)
1827 (#xbc0 . ?\e,A/\e(B)
1828 (#xbc2 . ?\e$,1ye\e(B)
1829 (#xbc3 . ?\e$,1xI\e(B)
1830 (#xbc4 . ?\e$,1zj\e(B)
1831 (#xbc6 . ?_)
1832 (#xbca . ?\e$,1x8\e(B)
1833 (#xbcc . ?\e$,1|5\e(B)
1834 (#xbce . ?\e$,1yd\e(B)
1835 (#xbcf . ?\e$,2"+\e(B)
1836 (#xbd3 . ?\e$,1zh\e(B)
1837 (#xbd6 . ?\e$,1xJ\e(B)
1838 (#xbd8 . ?\e$,1yC\e(B)
1839 (#xbda . ?\e$,1yB\e(B)
1840 (#xbdc . ?\e$,1yb\e(B)
1841 (#xbfc . ?\e$,1yc\e(B)
1842 ;; Hebrew
1843 (#xcdf . ?\e,H_\e(B)
1844 (#xce0 . ?\e,H`\e(B)
1845 (#xce1 . ?\e,Ha\e(B)
1846 (#xce2 . ?\e,Hb\e(B)
1847 (#xce3 . ?\e,Hc\e(B)
1848 (#xce4 . ?\e,Hd\e(B)
1849 (#xce5 . ?\e,He\e(B)
1850 (#xce6 . ?\e,Hf\e(B)
1851 (#xce7 . ?\e,Hg\e(B)
1852 (#xce8 . ?\e,Hh\e(B)
1853 (#xce9 . ?\e,Hi\e(B)
1854 (#xcea . ?\e,Hj\e(B)
1855 (#xceb . ?\e,Hk\e(B)
1856 (#xcec . ?\e,Hl\e(B)
1857 (#xced . ?\e,Hm\e(B)
1858 (#xcee . ?\e,Hn\e(B)
1859 (#xcef . ?\e,Ho\e(B)
1860 (#xcf0 . ?\e,Hp\e(B)
1861 (#xcf1 . ?\e,Hq\e(B)
1862 (#xcf2 . ?\e,Hr\e(B)
1863 (#xcf3 . ?\e,Hs\e(B)
1864 (#xcf4 . ?\e,Ht\e(B)
1865 (#xcf5 . ?\e,Hu\e(B)
1866 (#xcf6 . ?\e,Hv\e(B)
1867 (#xcf7 . ?\e,Hw\e(B)
1868 (#xcf8 . ?\e,Hx\e(B)
1869 (#xcf9 . ?\e,Hy\e(B)
1870 (#xcfa . ?\e,Hz\e(B)
1871 ;; Thai
1872 (#xda1 . ?\e,T!\e(B)
1873 (#xda2 . ?\e,T"\e(B)
1874 (#xda3 . ?\e,T#\e(B)
1875 (#xda4 . ?\e,T$\e(B)
1876 (#xda5 . ?\e,T%\e(B)
1877 (#xda6 . ?\e,T&\e(B)
1878 (#xda7 . ?\e,T'\e(B)
1879 (#xda8 . ?\e,T(\e(B)
1880 (#xda9 . ?\e,T)\e(B)
1881 (#xdaa . ?\e,T*\e(B)
1882 (#xdab . ?\e,T+\e(B)
1883 (#xdac . ?\e,T,\e(B)
1884 (#xdad . ?\e,T-\e(B)
1885 (#xdae . ?\e,T.\e(B)
1886 (#xdaf . ?\e,T/\e(B)
1887 (#xdb0 . ?\e,T0\e(B)
1888 (#xdb1 . ?\e,T1\e(B)
1889 (#xdb2 . ?\e,T2\e(B)
1890 (#xdb3 . ?\e,T3\e(B)
1891 (#xdb4 . ?\e,T4\e(B)
1892 (#xdb5 . ?\e,T5\e(B)
1893 (#xdb6 . ?\e,T6\e(B)
1894 (#xdb7 . ?\e,T7\e(B)
1895 (#xdb8 . ?\e,T8\e(B)
1896 (#xdb9 . ?\e,T9\e(B)
1897 (#xdba . ?\e,T:\e(B)
1898 (#xdbb . ?\e,T;\e(B)
1899 (#xdbc . ?\e,T<\e(B)
1900 (#xdbd . ?\e,T=\e(B)
1901 (#xdbe . ?\e,T>\e(B)
1902 (#xdbf . ?\e,T?\e(B)
1903 (#xdc0 . ?\e,T@\e(B)
1904 (#xdc1 . ?\e,TA\e(B)
1905 (#xdc2 . ?\e,TB\e(B)
1906 (#xdc3 . ?\e,TC\e(B)
1907 (#xdc4 . ?\e,TD\e(B)
1908 (#xdc5 . ?\e,TE\e(B)
1909 (#xdc6 . ?\e,TF\e(B)
1910 (#xdc7 . ?\e,TG\e(B)
1911 (#xdc8 . ?\e,TH\e(B)
1912 (#xdc9 . ?\e,TI\e(B)
1913 (#xdca . ?\e,TJ\e(B)
1914 (#xdcb . ?\e,TK\e(B)
1915 (#xdcc . ?\e,TL\e(B)
1916 (#xdcd . ?\e,TM\e(B)
1917 (#xdce . ?\e,TN\e(B)
1918 (#xdcf . ?\e,TO\e(B)
1919 (#xdd0 . ?\e,TP\e(B)
1920 (#xdd1 . ?\e,TQ\e(B)
1921 (#xdd2 . ?\e,TR\e(B)
1922 (#xdd3 . ?\e,TS\e(B)
1923 (#xdd4 . ?\e,TT\e(B)
1924 (#xdd5 . ?\e,TU\e(B)
1925 (#xdd6 . ?\e,TV\e(B)
1926 (#xdd7 . ?\e,TW\e(B)
1927 (#xdd8 . ?\e,TX\e(B)
1928 (#xdd9 . ?\e,TY\e(B)
1929 (#xdda . ?\e,TZ\e(B)
1930 (#xddf . ?\e,T_\e(B)
1931 (#xde0 . ?\e,T`\e(B)
1932 (#xde1 . ?\e,Ta\e(B)
1933 (#xde2 . ?\e,Tb\e(B)
1934 (#xde3 . ?\e,Tc\e(B)
1935 (#xde4 . ?\e,Td\e(B)
1936 (#xde5 . ?\e,Te\e(B)
1937 (#xde6 . ?\e,Tf\e(B)
1938 (#xde7 . ?\e,Tg\e(B)
1939 (#xde8 . ?\e,Th\e(B)
1940 (#xde9 . ?\e,Ti\e(B)
1941 (#xdea . ?\e,Tj\e(B)
1942 (#xdeb . ?\e,Tk\e(B)
1943 (#xdec . ?\e,Tl\e(B)
1944 (#xded . ?\e,Tm\e(B)
1945 (#xdf0 . ?\e,Tp\e(B)
1946 (#xdf1 . ?\e,Tq\e(B)
1947 (#xdf2 . ?\e,Tr\e(B)
1948 (#xdf3 . ?\e,Ts\e(B)
1949 (#xdf4 . ?\e,Tt\e(B)
1950 (#xdf5 . ?\e,Tu\e(B)
1951 (#xdf6 . ?\e,Tv\e(B)
1952 (#xdf7 . ?\e,Tw\e(B)
1953 (#xdf8 . ?\e,Tx\e(B)
1954 (#xdf9 . ?\e,Ty\e(B)
1955 ;; Korean
1956 (#xea1 . ?\e$(C$!\e(B)
1957 (#xea2 . ?\e$(C$"\e(B)
1958 (#xea3 . ?\e$(C$#\e(B)
1959 (#xea4 . ?\e$(C$$\e(B)
1960 (#xea5 . ?\e$(C$%\e(B)
1961 (#xea6 . ?\e$(C$&\e(B)
1962 (#xea7 . ?\e$(C$'\e(B)
1963 (#xea8 . ?\e$(C$(\e(B)
1964 (#xea9 . ?\e$(C$)\e(B)
1965 (#xeaa . ?\e$(C$*\e(B)
1966 (#xeab . ?\e$(C$+\e(B)
1967 (#xeac . ?\e$(C$,\e(B)
1968 (#xead . ?\e$(C$-\e(B)
1969 (#xeae . ?\e$(C$.\e(B)
1970 (#xeaf . ?\e$(C$/\e(B)
1971 (#xeb0 . ?\e$(C$0\e(B)
1972 (#xeb1 . ?\e$(C$1\e(B)
1973 (#xeb2 . ?\e$(C$2\e(B)
1974 (#xeb3 . ?\e$(C$3\e(B)
1975 (#xeb4 . ?\e$(C$4\e(B)
1976 (#xeb5 . ?\e$(C$5\e(B)
1977 (#xeb6 . ?\e$(C$6\e(B)
1978 (#xeb7 . ?\e$(C$7\e(B)
1979 (#xeb8 . ?\e$(C$8\e(B)
1980 (#xeb9 . ?\e$(C$9\e(B)
1981 (#xeba . ?\e$(C$:\e(B)
1982 (#xebb . ?\e$(C$;\e(B)
1983 (#xebc . ?\e$(C$<\e(B)
1984 (#xebd . ?\e$(C$=\e(B)
1985 (#xebe . ?\e$(C$>\e(B)
1986 (#xebf . ?\e$(C$?\e(B)
1987 (#xec0 . ?\e$(C$@\e(B)
1988 (#xec1 . ?\e$(C$A\e(B)
1989 (#xec2 . ?\e$(C$B\e(B)
1990 (#xec3 . ?\e$(C$C\e(B)
1991 (#xec4 . ?\e$(C$D\e(B)
1992 (#xec5 . ?\e$(C$E\e(B)
1993 (#xec6 . ?\e$(C$F\e(B)
1994 (#xec7 . ?\e$(C$G\e(B)
1995 (#xec8 . ?\e$(C$H\e(B)
1996 (#xec9 . ?\e$(C$I\e(B)
1997 (#xeca . ?\e$(C$J\e(B)
1998 (#xecb . ?\e$(C$K\e(B)
1999 (#xecc . ?\e$(C$L\e(B)
2000 (#xecd . ?\e$(C$M\e(B)
2001 (#xece . ?\e$(C$N\e(B)
2002 (#xecf . ?\e$(C$O\e(B)
2003 (#xed0 . ?\e$(C$P\e(B)
2004 (#xed1 . ?\e$(C$Q\e(B)
2005 (#xed2 . ?\e$(C$R\e(B)
2006 (#xed3 . ?\e$(C$S\e(B)
2007 (#xed4 . ?\e$,1LH\e(B)
2008 (#xed5 . ?\e$,1LI\e(B)
2009 (#xed6 . ?\e$,1LJ\e(B)
2010 (#xed7 . ?\e$,1LK\e(B)
2011 (#xed8 . ?\e$,1LL\e(B)
2012 (#xed9 . ?\e$,1LM\e(B)
2013 (#xeda . ?\e$,1LN\e(B)
2014 (#xedb . ?\e$,1LO\e(B)
2015 (#xedc . ?\e$,1LP\e(B)
2016 (#xedd . ?\e$,1LQ\e(B)
2017 (#xede . ?\e$,1LR\e(B)
2018 (#xedf . ?\e$,1LS\e(B)
2019 (#xee0 . ?\e$,1LT\e(B)
2020 (#xee1 . ?\e$,1LU\e(B)
2021 (#xee2 . ?\e$,1LV\e(B)
2022 (#xee3 . ?\e$,1LW\e(B)
2023 (#xee4 . ?\e$,1LX\e(B)
2024 (#xee5 . ?\e$,1LY\e(B)
2025 (#xee6 . ?\e$,1LZ\e(B)
2026 (#xee7 . ?\e$,1L[\e(B)
2027 (#xee8 . ?\e$,1L\\e(B)
2028 (#xee9 . ?\e$,1L]\e(B)
2029 (#xeea . ?\e$,1L^\e(B)
2030 (#xeeb . ?\e$,1L_\e(B)
2031 (#xeec . ?\e$,1L`\e(B)
2032 (#xeed . ?\e$,1La\e(B)
2033 (#xeee . ?\e$,1Lb\e(B)
2034 (#xeef . ?\e$(C$]\e(B)
2035 (#xef0 . ?\e$(C$a\e(B)
2036 (#xef1 . ?\e$(C$h\e(B)
2037 (#xef2 . ?\e$(C$o\e(B)
2038 (#xef3 . ?\e$(C$q\e(B)
2039 (#xef4 . ?\e$(C$t\e(B)
2040 (#xef5 . ?\e$(C$v\e(B)
2041 (#xef6 . ?\e$(C$}\e(B)
2042 (#xef7 . ?\e$(C$~\e(B)
2043 (#xef8 . ?\e$,1M+\e(B)
2044 (#xef9 . ?\e$,1M0\e(B)
2045 (#xefa . ?\e$,1M9\e(B)
2046 (#xeff . ?\e$,1tI\e(B)
2047 ;; Latin-5
2048 ;; Latin-6
2049 ;; Latin-7
2050 ;; Latin-8
2051 ;; Latin-9
2052 (#x13bc . ?\e,b<\e(B)
2053 (#x13bd . ?\e,b=\e(B)
2054 (#x13be . ?\e,b>\e(B)
2055 ;; Currency
2056 (#x20a0 . ?\e$,1t@\e(B)
2057 (#x20a1 . ?\e$,1tA\e(B)
2058 (#x20a2 . ?\e$,1tB\e(B)
2059 (#x20a3 . ?\e$,1tC\e(B)
2060 (#x20a4 . ?\e$,1tD\e(B)
2061 (#x20a5 . ?\e$,1tE\e(B)
2062 (#x20a6 . ?\e$,1tF\e(B)
2063 (#x20a7 . ?\e$,1tG\e(B)
2064 (#x20a8 . ?\e$,1tH\e(B)
2065 (#x20aa . ?\e$,1tJ\e(B)
2066 (#x20ab . ?\e$,1tK\e(B)
2067 (#x20ac . ?\e,b$\e(B)))
2068 (puthash (car pair) (cdr pair) x-keysym-table))
2069
2070 ;; The following keysym codes for graphics are listed in the document
2071 ;; as not having unicodes available:
2072
2073 ;; #x08b1 TOP LEFT SUMMATION Technical
2074 ;; #x08b2 BOTTOM LEFT SUMMATION Technical
2075 ;; #x08b3 TOP VERTICAL SUMMATION CONNECTOR Technical
2076 ;; #x08b4 BOTTOM VERTICAL SUMMATION CONNECTOR Technical
2077 ;; #x08b5 TOP RIGHT SUMMATION Technical
2078 ;; #x08b6 BOTTOM RIGHT SUMMATION Technical
2079 ;; #x08b7 RIGHT MIDDLE SUMMATION Technical
2080 ;; #x0aac SIGNIFICANT BLANK SYMBOL Publish
2081 ;; #x0abd DECIMAL POINT Publish
2082 ;; #x0abf MARKER Publish
2083 ;; #x0acb TRADEMARK SIGN IN CIRCLE Publish
2084 ;; #x0ada HEXAGRAM Publish
2085 ;; #x0aff CURSOR Publish
2086 ;; #x0dde THAI MAIHANAKAT Thai
2087
2088 \f
2089 ;;;; Selections and cut buffers
2090
2091 ;;; We keep track of the last text selected here, so we can check the
2092 ;;; current selection against it, and avoid passing back our own text
2093 ;;; from x-cut-buffer-or-selection-value. We track all three
2094 ;;; seperately in case another X application only sets one of them
2095 ;;; (say the cut buffer) we aren't fooled by the PRIMARY or
2096 ;;; CLIPBOARD selection staying the same.
2097 (defvar x-last-selected-text-clipboard nil
2098 "The value of the CLIPBOARD X selection last time we selected or
2099 pasted text.")
2100 (defvar x-last-selected-text-primary nil
2101 "The value of the PRIMARY X selection last time we selected or
2102 pasted text.")
2103 (defvar x-last-selected-text-cut nil
2104 "The value of the X cut buffer last time we selected or pasted text.
2105 The actual text stored in the X cut buffer is what encoded from this value.")
2106 (defvar x-last-selected-text-cut-encoded nil
2107 "The value of the X cut buffer last time we selected or pasted text.
2108 This is the actual text stored in the X cut buffer.")
2109
2110 ;;; It is said that overlarge strings are slow to put into the cut buffer.
2111 ;;; Note this value is overridden below.
2112 (defvar x-cut-buffer-max 20000
2113 "Max number of characters to put in the cut buffer.")
2114
2115 (defcustom x-select-enable-clipboard nil
2116 "Non-nil means cutting and pasting uses the clipboard.
2117 This is in addition to, but in preference to, the primary selection."
2118 :type 'boolean
2119 :group 'killing)
2120
2121 ;;; Make TEXT, a string, the primary X selection.
2122 ;;; Also, set the value of X cut buffer 0, for backward compatibility
2123 ;;; with older X applications.
2124 ;;; gildea@stop.mail-abuse.org says it's not desirable to put kills
2125 ;;; in the clipboard.
2126 (defun x-select-text (text &optional push)
2127 ;; Don't send the cut buffer too much text.
2128 ;; It becomes slow, and if really big it causes errors.
2129 (cond ((>= (length text) x-cut-buffer-max)
2130 (x-set-cut-buffer "" push)
2131 (setq x-last-selected-text-cut ""
2132 x-last-selected-text-cut-encoded ""))
2133 (t
2134 (setq x-last-selected-text-cut text
2135 x-last-selected-text-cut-encoded
2136 (encode-coding-string text (or locale-coding-system
2137 'iso-latin-1)))
2138 (x-set-cut-buffer x-last-selected-text-cut-encoded push)))
2139 (x-set-selection 'PRIMARY text)
2140 (setq x-last-selected-text-primary text)
2141 (when x-select-enable-clipboard
2142 (x-set-selection 'CLIPBOARD text)
2143 (setq x-last-selected-text-clipboard text))
2144 )
2145
2146 (defvar x-select-request-type nil
2147 "*Data type request for X selection.
2148 The value is nil, one of the following data types, or a list of them:
2149 `COMPOUND_TEXT', `UTF8_STRING', `STRING', `TEXT'
2150
2151 If the value is nil, try `COMPOUND_TEXT' and `UTF8_STRING', and
2152 use the more appropriate result. If both fail, try `STRING', and
2153 then `TEXT'.
2154
2155 If the value is one of the above symbols, try only the specified
2156 type.
2157
2158 If the value is a list of them, try each of them in the specified
2159 order until succeed.")
2160
2161 ;; Helper function for x-selection-value. Select UTF8 or CTEXT
2162 ;; whichever is more appropriate. Here, we use this heurisitcs.
2163 ;;
2164 ;; (1) If their lengthes are different, select the longer one. This
2165 ;; is because an X client may just cut off unsupported characters.
2166 ;;
2167 ;; (2) Otherwise, if the Nth character of CTEXT is an ASCII
2168 ;; character that is different from the Nth character of UTF8,
2169 ;; select UTF8. This is because an X client may replace unsupported
2170 ;; characters with some ASCII character (typically ` ' or `?') in
2171 ;; CTEXT.
2172 ;;
2173 ;; (3) Otherwise, select CTEXT. This is because legacy charsets are
2174 ;; better for the current Emacs, especially when the selection owner
2175 ;; is also Emacs.
2176
2177 (defun x-select-utf8-or-ctext (utf8 ctext)
2178 (let ((len-utf8 (length utf8))
2179 (len-ctext (length ctext))
2180 (selected ctext)
2181 (i 0)
2182 char)
2183 (if (/= len-utf8 len-ctext)
2184 (if (> len-utf8 len-ctext) utf8 ctext)
2185 (let ((result (compare-strings utf8 0 len-utf8 ctext 0 len-ctext)))
2186 (if (or (eq result t)
2187 (>= (aref ctext (1- (abs result))) 128))
2188 ctext
2189 utf8)))))
2190
2191 (defun x-selection-value (type)
2192 (let (text)
2193 (cond ((null x-select-request-type)
2194 (let (utf8 ctext utf8-coding)
2195 ;; We try both UTF8_STRING and COMPOUND_TEXT, and choose
2196 ;; the more appropriate one. If both fail, try STRING.
2197
2198 ;; At first try UTF8_STRING.
2199 (setq utf8 (condition-case nil
2200 (x-get-selection type 'UTF8_STRING)
2201 (error nil))
2202 utf8-coding last-coding-system-used)
2203 (if utf8
2204 ;; If it is a local selection, or it contains only
2205 ;; ASCII characers, choose it.
2206 (if (or (not (get-text-property 0 'foreign-selection utf8))
2207 (= (length utf8) (string-bytes utf8)))
2208 (setq text utf8)))
2209 ;; If not yet decided, try COMPOUND_TEXT.
2210 (if (not text)
2211 (if (setq ctext (condition-case nil
2212 (x-get-selection type 'COMPOUND_TEXT)
2213 (error nil)))
2214 ;; If UTF8_STRING was also successful, choose the
2215 ;; more appropriate one from UTF8 and CTEXT.
2216 (if utf8
2217 (setq text (x-select-utf8-or-ctext utf8 ctext))
2218 ;; Othewise, choose CTEXT.
2219 (setq text ctext))
2220 (setq text utf8)))
2221 ;; If not yet decided, try STRING.
2222 (or text
2223 (setq text (condition-case nil
2224 (x-get-selection type 'STRING)
2225 (error nil))))
2226 (if (eq text utf8)
2227 (setq last-coding-system-used utf8-coding))))
2228
2229 ((consp x-select-request-type)
2230 (let ((tail x-select-request-type))
2231 (while (and tail (not text))
2232 (condition-case nil
2233 (setq text (x-get-selection type (car tail)))
2234 (error nil))
2235 (setq tail (cdr tail)))))
2236
2237 (t
2238 (condition-case nil
2239 (setq text (x-get-selection type x-select-request-type))
2240 (error nil))))
2241
2242 (if text
2243 (remove-text-properties 0 (length text) '(foreign-selection nil) text))
2244 text))
2245
2246 ;;; Return the value of the current X selection.
2247 ;;; Consult the selection, and the cut buffer. Treat empty strings
2248 ;;; as if they were unset.
2249 ;;; If this function is called twice and finds the same text,
2250 ;;; it returns nil the second time. This is so that a single
2251 ;;; selection won't be added to the kill ring over and over.
2252 (defun x-cut-buffer-or-selection-value ()
2253 (let (clip-text primary-text cut-text)
2254 (when x-select-enable-clipboard
2255 (setq clip-text (x-selection-value 'CLIPBOARD))
2256 (if (string= clip-text "") (setq clip-text nil))
2257
2258 ;; Check the CLIPBOARD selection for 'newness', is it different
2259 ;; from what we remebered them to be last time we did a
2260 ;; cut/paste operation.
2261 (setq clip-text
2262 (cond;; check clipboard
2263 ((or (not clip-text) (string= clip-text ""))
2264 (setq x-last-selected-text-clipboard nil))
2265 ((eq clip-text x-last-selected-text-clipboard) nil)
2266 ((string= clip-text x-last-selected-text-clipboard)
2267 ;; Record the newer string,
2268 ;; so subsequent calls can use the `eq' test.
2269 (setq x-last-selected-text-clipboard clip-text)
2270 nil)
2271 (t
2272 (setq x-last-selected-text-clipboard clip-text))))
2273 )
2274
2275 (setq primary-text (x-selection-value 'PRIMARY))
2276 ;; Check the PRIMARY selection for 'newness', is it different
2277 ;; from what we remebered them to be last time we did a
2278 ;; cut/paste operation.
2279 (setq primary-text
2280 (cond;; check primary selection
2281 ((or (not primary-text) (string= primary-text ""))
2282 (setq x-last-selected-text-primary nil))
2283 ((eq primary-text x-last-selected-text-primary) nil)
2284 ((string= primary-text x-last-selected-text-primary)
2285 ;; Record the newer string,
2286 ;; so subsequent calls can use the `eq' test.
2287 (setq x-last-selected-text-primary primary-text)
2288 nil)
2289 (t
2290 (setq x-last-selected-text-primary primary-text))))
2291
2292 (setq cut-text (x-get-cut-buffer 0))
2293
2294 ;; Check the x cut buffer for 'newness', is it different
2295 ;; from what we remebered them to be last time we did a
2296 ;; cut/paste operation.
2297 (setq cut-text
2298 (cond;; check cut buffer
2299 ((or (not cut-text) (string= cut-text ""))
2300 (setq x-last-selected-text-cut nil))
2301 ;; This short cut doesn't work because x-get-cut-buffer
2302 ;; always returns a newly created string.
2303 ;; ((eq cut-text x-last-selected-text-cut) nil)
2304 ((string= cut-text x-last-selected-text-cut-encoded)
2305 ;; See the comment above. No need of this recording.
2306 ;; Record the newer string,
2307 ;; so subsequent calls can use the `eq' test.
2308 ;; (setq x-last-selected-text-cut cut-text)
2309 nil)
2310 (t
2311 (setq x-last-selected-text-cut-encoded cut-text
2312 x-last-selected-text-cut
2313 (decode-coding-string cut-text (or locale-coding-system
2314 'iso-latin-1))))))
2315
2316 ;; As we have done one selection, clear this now.
2317 (setq next-selection-coding-system nil)
2318
2319 ;; At this point we have recorded the current values for the
2320 ;; selection from clipboard (if we are supposed to) primary,
2321 ;; and cut buffer. So return the first one that has changed
2322 ;; (which is the first non-null one).
2323 ;;
2324 ;; NOTE: There will be cases where more than one of these has
2325 ;; changed and the new values differ. This indicates that
2326 ;; something like the following has happened since the last time
2327 ;; we looked at the selections: Application X set all the
2328 ;; selections, then Application Y set only one or two of them (say
2329 ;; just the cut-buffer). In this case since we don't have
2330 ;; timestamps there is no way to know what the 'correct' value to
2331 ;; return is. The nice thing to do would be to tell the user we
2332 ;; saw multiple possible selections and ask the user which was the
2333 ;; one they wanted.
2334 ;; This code is still a big improvement because now the user can
2335 ;; futz with the current selection and get emacs to pay attention
2336 ;; to the cut buffer again (previously as soon as clipboard or
2337 ;; primary had been set the cut buffer would essentially never be
2338 ;; checked again).
2339 (or clip-text primary-text cut-text)
2340 ))
2341
2342 (defun x-clipboard-yank ()
2343 "Insert the clipboard contents, or the last stretch of killed text."
2344 (interactive)
2345 (let ((clipboard-text
2346 (condition-case nil
2347 (x-get-selection 'CLIPBOARD)
2348 (error nil)))
2349 (x-select-enable-clipboard t))
2350 (if (and clipboard-text (> (length clipboard-text) 0))
2351 (kill-new clipboard-text))
2352 (yank)))
2353
2354 \f
2355 ;;; Window system initialization.
2356
2357 (defun x-win-suspend-error ()
2358 (error "Suspending an Emacs running under X makes no sense"))
2359
2360 (defvar x-initialized nil
2361 "Non-nil if the X window system has been initialized.")
2362
2363 (defun x-initialize-window-system ()
2364 "Initialize Emacs for X frames and open the first connection to an X server."
2365 ;; Make sure we have a valid resource name.
2366 (or (stringp x-resource-name)
2367 (let (i)
2368 (setq x-resource-name (invocation-name))
2369
2370 ;; Change any . or * characters in x-resource-name to hyphens,
2371 ;; so as not to choke when we use it in X resource queries.
2372 (while (setq i (string-match "[.*]" x-resource-name))
2373 (aset x-resource-name i ?-))))
2374
2375 (x-open-connection (or x-display-name
2376 (setq x-display-name (server-getenv "DISPLAY")))
2377 x-command-line-resources
2378 ;; Exit Emacs with fatal error if this fails and we
2379 ;; are the initial display.
2380 (eq initial-window-system 'x))
2381
2382 (setq x-cut-buffer-max (min (- (/ (x-server-max-request-size) 2) 100)
2383 x-cut-buffer-max))
2384
2385 ;; Setup the default fontset.
2386 (setup-default-fontset)
2387
2388 ;; Create the standard fontset.
2389 (create-fontset-from-fontset-spec standard-fontset-spec t)
2390
2391 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...).
2392 (create-fontset-from-x-resource)
2393
2394 ;; Try to create a fontset from a font specification which comes
2395 ;; from initial-frame-alist, default-frame-alist, or X resource.
2396 ;; A font specification in command line argument (i.e. -fn XXXX)
2397 ;; should be already in default-frame-alist as a `font'
2398 ;; parameter. However, any font specifications in site-start
2399 ;; library, user's init file (.emacs), and default.el are not
2400 ;; yet handled here.
2401
2402 (let ((font (or (cdr (assq 'font initial-frame-alist))
2403 (cdr (assq 'font default-frame-alist))
2404 (x-get-resource "font" "Font")))
2405 xlfd-fields resolved-name)
2406 (if (and font
2407 (not (query-fontset font))
2408 (setq resolved-name (x-resolve-font-name font))
2409 (setq xlfd-fields (x-decompose-font-name font)))
2410 (if (string= "fontset" (aref xlfd-fields xlfd-regexp-registry-subnum))
2411 (new-fontset font (x-complement-fontset-spec xlfd-fields nil))
2412 ;; Create a fontset from FONT. The fontset name is
2413 ;; generated from FONT.
2414 (create-fontset-from-ascii-font font resolved-name "startup"))))
2415
2416 ;; Apply a geometry resource to the initial frame. Put it at the end
2417 ;; of the alist, so that anything specified on the command line takes
2418 ;; precedence.
2419 (let* ((res-geometry (x-get-resource "geometry" "Geometry"))
2420 parsed)
2421 (if res-geometry
2422 (progn
2423 (setq parsed (x-parse-geometry res-geometry))
2424 ;; If the resource specifies a position,
2425 ;; call the position and size "user-specified".
2426 (if (or (assq 'top parsed) (assq 'left parsed))
2427 (setq parsed (cons '(user-position . t)
2428 (cons '(user-size . t) parsed))))
2429 ;; All geometry parms apply to the initial frame.
2430 (setq initial-frame-alist (append initial-frame-alist parsed))
2431 ;; The size parms apply to all frames.
2432 (if (assq 'height parsed)
2433 (setq default-frame-alist
2434 (cons (cons 'height (cdr (assq 'height parsed)))
2435 default-frame-alist)))
2436 (if (assq 'width parsed)
2437 (setq default-frame-alist
2438 (cons (cons 'width (cdr (assq 'width parsed)))
2439 default-frame-alist))))))
2440
2441 ;; Check the reverseVideo resource.
2442 (let ((case-fold-search t))
2443 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo")))
2444 (if (and rv
2445 (string-match "^\\(true\\|yes\\|on\\)$" rv))
2446 (setq default-frame-alist
2447 (cons '(reverse . t) default-frame-alist)))))
2448
2449 ;; Set x-selection-timeout, measured in milliseconds.
2450 (let ((res-selection-timeout
2451 (x-get-resource "selectionTimeout" "SelectionTimeout")))
2452 (setq x-selection-timeout 20000)
2453 (if res-selection-timeout
2454 (setq x-selection-timeout (string-to-number res-selection-timeout))))
2455
2456 ;; Don't let Emacs suspend under X.
2457 (add-hook 'suspend-hook 'x-win-suspend-error)
2458
2459 ;; Turn off window-splitting optimization; X is usually fast enough
2460 ;; that this is only annoying.
2461 (setq split-window-keep-point t)
2462
2463 ;; Motif direct handling of f10 wasn't working right,
2464 ;; So temporarily we've turned it off in lwlib-Xm.c
2465 ;; and turned the Emacs f10 back on.
2466 ;; ;; Motif normally handles f10 itself, so don't try to handle it a second time.
2467 ;; (if (featurep 'motif)
2468 ;; (global-set-key [f10] 'ignore))
2469
2470 ;; Turn on support for mouse wheels.
2471 (mouse-wheel-mode 1)
2472
2473 ;; Enable CLIPBOARD copy/paste through menu bar commands.
2474 (menu-bar-enable-clipboard)
2475
2476 ;; Override Paste so it looks at CLIPBOARD first.
2477 (define-key menu-bar-edit-menu [paste]
2478 (cons "Paste" (cons "Paste text from clipboard or kill ring"
2479 'x-clipboard-yank)))
2480
2481 (setq x-initialized t))
2482
2483 (add-to-list 'handle-args-function-alist '(x . x-handle-args))
2484 (add-to-list 'frame-creation-function-alist '(x . x-create-frame-with-faces))
2485 (add-to-list 'window-system-initialization-alist '(x . x-initialize-window-system))
2486
2487 (provide 'x-win)
2488
2489 ;; Initiate drag and drop
2490 (add-hook 'after-make-frame-functions 'x-dnd-init-frame)
2491 (global-set-key [drag-n-drop] 'x-dnd-handle-drag-n-drop-event)
2492
2493 ;;; arch-tag: f1501302-db8b-4d95-88e3-116697d89f78
2494 ;;; x-win.el ends here