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