1 ;;; x-win.el --- parse relevant switches and set up for X -*-coding: iso-2022-7bit; lexical-binding:t -*-
3 ;; Copyright (C) 1993-1994, 2001-2014 Free Software Foundation, Inc.
6 ;; Keywords: terminals, i18n
8 ;; This file is part of GNU Emacs.
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 3 of the License, or
13 ;; (at your option) any later version.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; X-win.el: this file defines functions to initialize the X window
26 ;; system and process X-specific command line parameters before
27 ;; creating the first X frame.
29 ;; Beginning in Emacs 23, the act of loading this file should not have
30 ;; the side effect of initializing the window system or processing
31 ;; command line arguments (this file is now loaded in loadup.el). See
32 ;; the variables `handle-args-function-alist' and
33 ;; `window-system-initialization-alist' for more details.
35 ;; startup.el will then examine startup files, and eventually call the hooks
36 ;; which create the first window(s).
40 ;; These are the standard X switches from the Xt Initialize.c file of
43 ;; Command line Resource Manager string
46 ;; +synchronous *synchronous
47 ;; -background *background
50 ;; -bordercolor *borderColor
51 ;; -borderwidth .borderWidth
57 ;; -foreground *foreground
58 ;; -geometry .geometry
61 ;; -reverse *reverseVideo
63 ;; -selectionTimeout .selectionTimeout
64 ;; -synchronous *synchronous
67 ;; An alist of X options and the function which handles them. See
70 (eval-when-compile (require 'cl-lib
))
72 (if (not (fboundp 'x-create-frame
))
73 (error "%s: Loading x-win.el but not compiled for X" (invocation-name)))
84 (defvar x-invocation-args
)
85 (defvar x-keysym-table
)
86 (defvar x-selection-timeout
)
88 (defvar x-session-previous-id
)
90 (defun x-handle-no-bitmap-icon (_switch)
91 (setq default-frame-alist
(cons '(icon-type) default-frame-alist
)))
93 ;; Handle the --parent-id option.
94 (defun x-handle-parent-id (switch)
95 (or (consp x-invocation-args
)
96 (error "%s: missing argument to `%s' option" (invocation-name) switch
))
97 (setq initial-frame-alist
(cons
99 (string-to-number (car x-invocation-args
)))
101 x-invocation-args
(cdr x-invocation-args
)))
103 ;; Handle the --smid switch. This is used by the session manager
104 ;; to give us back our session id we had on the previous run.
105 (defun x-handle-smid (switch)
106 (or (consp x-invocation-args
)
107 (error "%s: missing argument to `%s' option" (invocation-name) switch
))
108 (setq x-session-previous-id
(car x-invocation-args
)
109 x-invocation-args
(cdr x-invocation-args
)))
111 (defvar emacs-save-session-functions nil
112 "Special hook run when a save-session event occurs.
113 The functions do not get any argument.
114 Functions can return non-nil to inform the session manager that the
115 window system shutdown should be aborted.
117 See also `emacs-session-save'.")
119 (defun emacs-session-filename (session-id)
120 "Construct a filename to save the session in based on SESSION-ID.
121 Return a filename in `user-emacs-directory', unless the session file
122 already exists in the home directory."
123 (let ((basename (concat "session." session-id
)))
124 (locate-user-emacs-file basename
125 (concat ".emacs-" basename
))))
127 (defun emacs-session-save ()
128 "This function is called when the window system is shutting down.
129 If this function returns non-nil, the window system shutdown is canceled.
131 When a session manager tells Emacs that the window system is shutting
132 down, this function is called. It calls the functions in the hook
133 `emacs-save-session-functions'. Functions are called with the current
134 buffer set to a temporary buffer. Functions should use `insert' to insert
135 lisp code to save the session state. The buffer is saved in a file in the
136 home directory of the user running Emacs. The file is evaluated when
137 Emacs is restarted by the session manager.
139 If any of the functions returns non-nil, no more functions are called
140 and this function returns non-nil. This will inform the session manager
141 that it should abort the window system shutdown."
142 (let ((filename (emacs-session-filename x-session-id
))
143 (buf (get-buffer-create (concat " *SES " x-session-id
))))
144 (when (file-exists-p filename
)
145 (delete-file filename
))
146 (with-current-buffer buf
147 (let ((cancel-shutdown (condition-case nil
148 ;; A return of t means cancel the shutdown.
149 (run-hook-with-args-until-success
150 'emacs-save-session-functions
)
152 (unless cancel-shutdown
153 (write-file filename
))
157 (defun emacs-session-restore (previous-session-id)
158 "Restore the Emacs session if started by a session manager.
159 The file saved by `emacs-session-save' is evaluated and deleted if it
161 (let ((filename (emacs-session-filename previous-session-id
)))
162 (when (file-exists-p filename
)
164 (delete-file filename
)
165 (message "Restored session data"))))
171 ;; Standard X cursor shapes, courtesy of Mr. Fox, who wanted ALL of them.
174 (defconst x-pointer-X-cursor
0)
175 (defconst x-pointer-arrow
2)
176 (defconst x-pointer-based-arrow-down
4)
177 (defconst x-pointer-based-arrow-up
6)
178 (defconst x-pointer-boat
8)
179 (defconst x-pointer-bogosity
10)
180 (defconst x-pointer-bottom-left-corner
12)
181 (defconst x-pointer-bottom-right-corner
14)
182 (defconst x-pointer-bottom-side
16)
183 (defconst x-pointer-bottom-tee
18)
184 (defconst x-pointer-box-spiral
20)
185 (defconst x-pointer-center-ptr
22)
186 (defconst x-pointer-circle
24)
187 (defconst x-pointer-clock
26)
188 (defconst x-pointer-coffee-mug
28)
189 (defconst x-pointer-cross
30)
190 (defconst x-pointer-cross-reverse
32)
191 (defconst x-pointer-crosshair
34)
192 (defconst x-pointer-diamond-cross
36)
193 (defconst x-pointer-dot
38)
194 (defconst x-pointer-dotbox
40)
195 (defconst x-pointer-double-arrow
42)
196 (defconst x-pointer-draft-large
44)
197 (defconst x-pointer-draft-small
46)
198 (defconst x-pointer-draped-box
48)
199 (defconst x-pointer-exchange
50)
200 (defconst x-pointer-fleur
52)
201 (defconst x-pointer-gobbler
54)
202 (defconst x-pointer-gumby
56)
203 (defconst x-pointer-hand1
58)
204 (defconst x-pointer-hand2
60)
205 (defconst x-pointer-heart
62)
206 (defconst x-pointer-icon
64)
207 (defconst x-pointer-iron-cross
66)
208 (defconst x-pointer-left-ptr
68)
209 (defconst x-pointer-left-side
70)
210 (defconst x-pointer-left-tee
72)
211 (defconst x-pointer-leftbutton
74)
212 (defconst x-pointer-ll-angle
76)
213 (defconst x-pointer-lr-angle
78)
214 (defconst x-pointer-man
80)
215 (defconst x-pointer-middlebutton
82)
216 (defconst x-pointer-mouse
84)
217 (defconst x-pointer-pencil
86)
218 (defconst x-pointer-pirate
88)
219 (defconst x-pointer-plus
90)
220 (defconst x-pointer-question-arrow
92)
221 (defconst x-pointer-right-ptr
94)
222 (defconst x-pointer-right-side
96)
223 (defconst x-pointer-right-tee
98)
224 (defconst x-pointer-rightbutton
100)
225 (defconst x-pointer-rtl-logo
102)
226 (defconst x-pointer-sailboat
104)
227 (defconst x-pointer-sb-down-arrow
106)
228 (defconst x-pointer-sb-h-double-arrow
108)
229 (defconst x-pointer-sb-left-arrow
110)
230 (defconst x-pointer-sb-right-arrow
112)
231 (defconst x-pointer-sb-up-arrow
114)
232 (defconst x-pointer-sb-v-double-arrow
116)
233 (defconst x-pointer-shuttle
118)
234 (defconst x-pointer-sizing
120)
235 (defconst x-pointer-spider
122)
236 (defconst x-pointer-spraycan
124)
237 (defconst x-pointer-star
126)
238 (defconst x-pointer-target
128)
239 (defconst x-pointer-tcross
130)
240 (defconst x-pointer-top-left-arrow
132)
241 (defconst x-pointer-top-left-corner
134)
242 (defconst x-pointer-top-right-corner
136)
243 (defconst x-pointer-top-side
138)
244 (defconst x-pointer-top-tee
140)
245 (defconst x-pointer-trek
142)
246 (defconst x-pointer-ul-angle
144)
247 (defconst x-pointer-umbrella
146)
248 (defconst x-pointer-ur-angle
148)
249 (defconst x-pointer-watch
150)
250 (defconst x-pointer-xterm
152)
251 (defconst x-pointer-invisible
255)
256 (defun vendor-specific-keysyms (vendor)
257 "Return the appropriate value of `system-key-alist' for VENDOR.
258 VENDOR is a string containing the name of the X Server's vendor,
259 as returned by `x-server-vendor'."
260 (cond ((or (string-equal vendor
"Hewlett-Packard Incorporated")
261 (string-equal vendor
"Hewlett-Packard Company"))
262 '(( 168 . mute-acute
)
264 ( 170 . mute-asciicircum
)
265 ( 171 . mute-diaeresis
)
266 ( 172 . mute-asciitilde
)
280 (65397 . kp-backtab
)))
281 ;; Fixme: What about non-X11/NeWS sun server?
282 ((or (string-equal vendor
"X11/NeWS - Sun Microsystems Inc.")
283 (string-equal vendor
"X Consortium"))
287 ;; These are for Sun under X11R6
295 ;; This is used by DEC's X server.
296 '((65280 . remove
)))))
301 (puthash i i x-keysym-table
)
304 ;; Table from Kuhn's proposed additions to the `KEYSYM Encoding'
305 ;; appendix to the X protocol definition.
366 (#x1ff . ?\e,B\x7f\e(B)
426 ;; Kana: Fixme: needs conversion to Japanese charset -- seems
427 ;; to require jisx0213, for which the Unicode translation
428 ;; isn't clear. Using Emacs to convert this to Unicode and back changes
429 ;; this from "\e(J~\e(B" (i.e., bytes "ESC ( J ~ ESC ( B") to "\e$(G"#\e(B" (i.e., bytes
430 ;; "ESC $ ( G " # ESC ( B").
432 (#x4a1 . ?
\e$A
!#\e(B)
433 (#x4a2 . ?\
\e$A
!8\e(B)
434 (#x4a3 . ?\
\e$A
!9\e(B)
435 (#x4a4 . ?
\e$A
!"\e(B)
436 (#x4a5 . ?\e$A!$\e(B)
437 (#x4a6 . ?\e$A%r\e(B)
438 (#x4a7 . ?\e$A%!\e(B)
439 (#x4a8 . ?\e$A%#\e(B)
440 (#x4a9 . ?\e$A%%\e(B)
441 (#x4aa . ?\e$A%'\e(B)
442 (#x4ab . ?\e$A%)\e(B)
443 (#x4ac . ?\e$A%c\e(B)
444 (#x4ad . ?\e$A%e\e(B)
445 (#x4ae . ?\e$A%g\e(B)
446 (#x4af . ?\e$A%C\e(B)
447 (#x4b0 . ?\e$B!<\e(B)
448 (#x4b1 . ?\e$A%"\e(B)
449 (#x4b2 . ?
\e$A%$
\e(B)
450 (#x4b3 . ?
\e$A%
&\e(B)
451 (#x4b4 . ?
\e$A%
(\e(B)
452 (#x4b5 . ?
\e$A%
*\e(B)
453 (#x4b6 . ?
\e$A%
+\e(B)
454 (#x4b7 . ?
\e$A%-
\e(B)
455 (#x4b8 . ?
\e$A%
/\e(B)
456 (#x4b9 . ?
\e$A%
1\e(B)
457 (#x4ba . ?
\e$A%
3\e(B)
458 (#x4bb . ?
\e$A%
5\e(B)
459 (#x4bc . ?
\e$A%
7\e(B)
460 (#x4bd . ?
\e$A%
9\e(B)
461 (#x4be . ?
\e$A%
;\e(B)
462 (#x4bf . ?
\e$A%
=\e(B)
463 (#x4c0 . ?
\e$A%?
\e(B)
464 (#x4c1 . ?
\e$A%A
\e(B)
465 (#x4c2 . ?
\e$A%D
\e(B)
466 (#x4c3 . ?
\e$A%F
\e(B)
467 (#x4c4 . ?
\e$A%H
\e(B)
468 (#x4c5 . ?
\e$A%J
\e(B)
469 (#x4c6 . ?
\e$A%K
\e(B)
470 (#x4c7 . ?
\e$A%L
\e(B)
471 (#x4c8 . ?
\e$A%M
\e(B)
472 (#x4c9 . ?
\e$A%N
\e(B)
473 (#x4ca . ?
\e$A%O
\e(B)
474 (#x4cb . ?
\e$A%R
\e(B)
475 (#x4cc . ?
\e$A%U
\e(B)
476 (#x4cd . ?
\e$A%X
\e(B)
477 (#x4ce . ?
\e$A%
[\e(B)
478 (#x4cf . ?
\e$A%^
\e(B)
479 (#x4d0 . ?
\e$A%_
\e(B)
480 (#x4d1 . ?
\e$A%
`\e(B)
481 (#x4d2 . ?
\e$A%a
\e(B)
482 (#x4d3 . ?
\e$A%b
\e(B)
483 (#x4d4 . ?
\e$A%d
\e(B)
484 (#x4d5 . ?
\e$A%f
\e(B)
485 (#x4d6 . ?
\e$A%h
\e(B)
486 (#x4d7 . ?
\e$A%i
\e(B)
487 (#x4d8 . ?
\e$A%j
\e(B)
488 (#x4d9 . ?
\e$A%k
\e(B)
489 (#x4da . ?
\e$A%l
\e(B)
490 (#x4db . ?
\e$A%m
\e(B)
491 (#x4dc . ?
\e$A%o
\e(B)
492 (#x4dd . ?
\e$A%s
\e(B)
493 (#x4de . ?
\e$B
!+\e(B)
494 (#x4df . ?
\e$B
!,\e(B)
545 (#x680 . ?
\e$
,1)R
\e(B)
546 (#x681 . ?
\e$
,1)V
\e(B)
547 (#x682 . ?
\e$
,1)Z
\e(B)
548 (#x683 . ?
\e$
,1)\
\e(B)
549 (#x684 . ?
\e$
,1)b
\e(B)
550 (#x685 . ?
\e$
,1)n
\e(B)
551 (#x686 . ?
\e$
,1)p
\e(B)
552 (#x687 . ?
\e$
,1)r
\e(B)
553 (#x688 . ?
\e$
,1)v
\e(B)
554 (#x689 . ?
\e$
,1)x
\e(B)
555 (#x68a . ?
\e$
,1)z
\e(B)
556 (#x68c . ?
\e$
,1*8\e(B)
557 (#x68d . ?
\e$
,1*B
\e(B)
558 (#x68e . ?
\e$
,1*H
\e(B)
559 (#x68f . ?
\e$
,1*N
\e(B)
560 (#x690 . ?
\e$
,1)S
\e(B)
561 (#x691 . ?
\e$
,1)W
\e(B)
562 (#x692 . ?
\e$
,1)[\e(B)
563 (#x693 . ?
\e$
,1)]\e(B)
564 (#x694 . ?
\e$
,1)c
\e(B)
565 (#x695 . ?
\e$
,1)o
\e(B)
566 (#x696 . ?
\e$
,1)q
\e(B)
567 (#x697 . ?
\e$
,1)s
\e(B)
568 (#x698 . ?
\e$
,1)w
\e(B)
569 (#x699 . ?
\e$
,1)y
\e(B)
570 (#x69a . ?
\e$
,1){\e(B)
571 (#x69c . ?
\e$
,1*9\e(B)
572 (#x69d . ?
\e$
,1*C
\e(B)
573 (#x69e . ?
\e$
,1*I
\e(B)
574 (#x69f . ?
\e$
,1*O
\e(B)
588 (#x6af . ?
\e,L
\x7f\e(B)
741 (#x8a1 . ?\e$,1|W\e(B)
742 (#x8a2 . ?\e$A)0\e(B)
743 (#x8a3 . ?\e$A)$\e(B)
744 (#x8a4 . ?\e$,1{ \e(B)
745 (#x8a5 . ?\e$,1{!\e(B)
746 (#x8a6 . ?\e$A)&\e(B)
747 (#x8a7 . ?\e$,1|A\e(B)
748 (#x8a8 . ?\e$,1|C\e(B)
749 (#x8a9 . ?\e$,1|D\e(B)
750 (#x8aa . ?\e$,1|F\e(B)
751 (#x8ab . ?\e$,1|;\e(B)
752 (#x8ac . ?\e$,1|=\e(B)
753 (#x8ad . ?\e$,1|>\e(B)
754 (#x8ae . ?\e$,1|@\e(B)
755 (#x8af . ?\e$,1|H\e(B)
756 (#x8b0 . ?\e$,1|L\e(B)
757 (#x8bc . ?\e$A!\\e(B)
758 (#x8bd . ?\e$A!Y\e(B)
759 (#x8be . ?\e$A!]\e(B)
760 (#x8bf . ?\e$A!R\e(B)
761 (#x8c0 . ?\e$A!`\e(B)
762 (#x8c1 . ?\e$A!X\e(B)
763 (#x8c2 . ?\e$A!^\e(B)
764 (#x8c5 . ?\e$B"`\e(B)
765 (#x8c8 . ?
\e$
(G"D\e(B)
766 (#x8c9 . ?\e$(O"l
\e(B)
767 (#x8cd . ?
\e$B
"N\e(B)
768 (#x8ce . ?\e$B"M
\e(B)
769 (#x8cf . ?
\e$A
!T
\e(B)
770 (#x8d6 . ?
\e$A
!L
\e(B)
771 (#x8da . ?
\e$B
">\e(B)
772 (#x8db . ?\e$B"?
\e(B)
773 (#x8dc . ?
\e$A
!I
\e(B)
774 (#x8dd . ?
\e$A
!H
\e(B)
775 (#x8de . ?
\e$A
!D
\e(B)
776 (#x8df . ?
\e$A
!E
\e(B)
777 (#x8ef . ?
\e$B
"_\e(B)
778 (#x8f6 . ?\e$,1!R\e(B)
779 (#x8fb . ?\e$A!{\e(B)
780 (#x8fc . ?\e$A!|\e(B)
781 (#x8fd . ?\e$A!z\e(B)
782 (#x8fe . ?\e$A!}\e(B)
784 (#x9e0 . ?\e$A!t\e(B)
785 (#x9e1 . ?\e$(C"F
\e(B)
786 (#x9e2 . ?
\e$
(GB*\e(B)
787 (#x9e3 . ?
\e$
(GB-\e(B)
788 (#x9e4 . ?
\e$
(GB.
\e(B)
789 (#x9e5 . ?
\e$
(GB+\e(B)
790 (#x9e8 . ?
\e$
,1}d
\e(B)
791 (#x9e9 . ?
\e$
(GB,\e(B)
792 (#x9ea . ?
\e$A
)<\e(B)
793 (#x9eb . ?
\e$A
)4\e(B)
794 (#x9ec . ?
\e$A
)0\e(B)
795 (#x9ed . ?
\e$A
)8\e(B)
796 (#x9ee . ?
\e$A
)`\e(B)
797 (#x9ef . ?
\e$
,1|Z
\e(B)
798 (#x9f0 . ?
\e$
,1|
[\e(B)
799 (#x9f1 . ?
\e$A
)$
\e(B)
800 (#x9f2 . ?
\e$
,1|\
\e(B)
801 (#x9f3 . ?
\e$
,1|
]\e(B)
802 (#x9f4 . ?
\e$A
)@\e(B)
803 (#x9f5 . ?
\e$A
)H
\e(B)
804 (#x9f6 . ?
\e$A
)X
\e(B)
805 (#x9f7 . ?
\e$A
)P
\e(B)
806 (#x9f8 . ?
\e$A
)&\e(B)
808 (#xaa1 . ?
\e$
,1rc
\e(B)
809 (#xaa2 . ?
\e$
,1rb
\e(B)
810 (#xaa3 . ?
\e$
,1rd
\e(B)
811 (#xaa4 . ?
\e$
,1re
\e(B)
812 (#xaa5 . ?
\e$
,1rg
\e(B)
813 (#xaa6 . ?
\e$
,1rh
\e(B)
814 (#xaa7 . ?
\e$
,1ri
\e(B)
815 (#xaa8 . ?
\e$
,1rj
\e(B)
816 (#xaa9 . ?
\e$
(G!7\e(B)
817 (#xaaa . ?
\e$
(G!9\e(B)
818 (#xaae . ?
\e$A
!-
\e(B)
819 (#xaaf . ?
\e$
(G!-
\e(B)
820 (#xab0 . ?
\e$
(O'x
\e(B)
821 (#xab1 . ?
\e$
(O'y
\e(B)
822 (#xab2 . ?
\e$
(O'z
\e(B)
823 (#xab3 . ?
\e$
,1v6
\e(B)
824 (#xab4 . ?
\e$
,1v7
\e(B)
825 (#xab5 . ?
\e$
,1v8
\e(B)
826 (#xab6 . ?
\e$
,1v9
\e(B)
827 (#xab7 . ?
\e$
,1v
:\e(B)
828 (#xab8 . ?
\e$
(G""\e(B)
829 (#xabb . ?
\e$
,1rr
\e(B)
830 (#xabc . ?
\e$
,1{)\e(B)
831 (#xabe . ?
\e$
,1{*\e(B)
832 (#xac3 . ?
\e$
(C({\e(B)
833 (#xac4 . ?
\e$
(C(|
\e(B)
834 (#xac5 . ?
\e$
(C(}\e(B)
835 (#xac6 . ?
\e$
(C(~
\e(B)
836 (#xac9 . ?
\e$
(D"o\e(B)
837 (#xaca . ?\e$,2"s
\e(B)
838 (#xacc . ?
\e$
(O##\e(B)
839 (#xacd . ?
\e$
(O#!\e(B)
840 (#xace . ?
\e$A
!p
\e(B)
841 (#xacf . ?
\e$
,2!o
\e(B)
846 (#xad4 . ?\e$,1u^\e(B)
847 (#xad6 . ?\e$A!d\e(B)
848 (#xad7 . ?\e$A!e\e(B)
849 (#xad9 . ?\e$,2%]\e(B)
850 (#xadb . ?\e$,2!l\e(B)
851 (#xadc . ?\e$(O#$\e(B)
852 (#xadd . ?\e$(O#"\e(B)
853 (#xade . ?
\e$A
!q
\e(B)
854 (#xadf . ?
\e$
,2!n
\e(B)
855 (#xae0 . ?
\e$
(O#?
\e(B)
856 (#xae1 . ?
\e$
,2!k
\e(B)
857 (#xae2 . ?
\e$
,2!m
\e(B)
858 (#xae3 . ?
\e$A
!w
\e(B)
859 (#xae4 . ?
\e$
(G!}\e(B)
860 (#xae5 . ?
\e$A
!n
\e(B)
861 (#xae6 . ?
\e$
(O#@\e(B)
862 (#xae7 . ?
\e$
,2!j
\e(B)
863 (#xae8 . ?
\e$A
!x
\e(B)
864 (#xae9 . ?
\e$
(G!~
\e(B)
865 (#xaea . ?
\e$
(C"P\e(B)
866 (#xaeb . ?\e$(O-~\e(B)
867 (#xaec . ?\e$(O&@\e(B)
868 (#xaed . ?\e$(O&<\e(B)
869 (#xaee . ?\e$(O&>\e(B)
870 (#xaf0 . ?\e$,2%`\e(B)
871 (#xaf1 . ?\e$B"w
\e(B)
872 (#xaf2 . ?
\e$B
"x\e(B)
873 (#xaf3 . ?\e$(O'{\e(B)
874 (#xaf4 . ?\e$,2%W\e(B)
875 (#xaf5 . ?\e$B"t
\e(B)
876 (#xaf6 . ?
\e$B
"u\e(B)
877 (#xaf7 . ?\e$A!a\e(B)
878 (#xaf8 . ?\e$A!b\e(B)
879 (#xaf9 . ?\e$(O&g\e(B)
880 (#xafa . ?\e$,1zu\e(B)
881 (#xafb . ?\e$,1uW\e(B)
882 (#xafc . ?\e$,1s8\e(B)
883 (#xafd . ?\e$,1rz\e(B)
888 (#xba8 . ?\e$A!E\e(B)
889 (#xba9 . ?\e$A!D\e(B)
891 (#xbc2 . ?\e$A!M\e(B)
892 (#xbc3 . ?\e$A!I\e(B)
893 (#xbc4 . ?\e$,1zj\e(B)
895 (#xbca . ?\e$,1x8\e(B)
896 (#xbcc . ?\e$,1|5\e(B)
897 (#xbce . ?\e$,1yd\e(B)
898 (#xbcf . ?\e$A!p\e(B)
899 (#xbd3 . ?\e$,1zh\e(B)
900 (#xbd6 . ?\e$A!H\e(B)
901 (#xbd8 . ?\e$B"?
\e(B)
902 (#xbda . ?
\e$B
">\e(B)
903 (#xbdc . ?\e$,1yb\e(B)
904 (#xbfc . ?\e$,1yc\e(B)
1000 (#xde6 . ?
\e,Tf
\e(B)
1001 (#xde7 . ?
\e,Tg
\e(B)
1002 (#xde8 . ?
\e,Th
\e(B)
1003 (#xde9 . ?
\e,Ti
\e(B)
1004 (#xdea . ?
\e,Tj
\e(B)
1005 (#xdeb . ?
\e,Tk
\e(B)
1006 (#xdec . ?
\e,Tl
\e(B)
1007 (#xded . ?
\e,Tm
\e(B)
1008 (#xdf0 . ?
\e,Tp
\e(B)
1009 (#xdf1 . ?
\e,Tq
\e(B)
1010 (#xdf2 . ?
\e,Tr
\e(B)
1011 (#xdf3 . ?
\e,Ts
\e(B)
1012 (#xdf4 . ?
\e,Tt
\e(B)
1013 (#xdf5 . ?
\e,Tu
\e(B)
1014 (#xdf6 . ?
\e,Tv
\e(B)
1015 (#xdf7 . ?
\e,Tw
\e(B)
1016 (#xdf8 . ?
\e,Tx
\e(B)
1017 (#xdf9 . ?
\e,Ty
\e(B)
1019 (#xea1 . ?
\e$
(C$
!\e(B)
1020 (#xea2 . ?
\e$
(C$
"\e(B)
1021 (#xea3 . ?\e$(C$#\e(B)
1022 (#xea4 . ?\e$(C$$\e(B)
1023 (#xea5 . ?\e$(C$%\e(B)
1024 (#xea6 . ?\e$(C$&\e(B)
1025 (#xea7 . ?\e$(C$'\e(B)
1026 (#xea8 . ?\e$(C$(\e(B)
1027 (#xea9 . ?\e$(C$)\e(B)
1028 (#xeaa . ?\e$(C$*\e(B)
1029 (#xeab . ?\e$(C$+\e(B)
1030 (#xeac . ?\e$(C$,\e(B)
1031 (#xead . ?\e$(C$-\e(B)
1032 (#xeae . ?\e$(C$.\e(B)
1033 (#xeaf . ?\e$(C$/\e(B)
1034 (#xeb0 . ?\e$(C$0\e(B)
1035 (#xeb1 . ?\e$(C$1\e(B)
1036 (#xeb2 . ?\e$(C$2\e(B)
1037 (#xeb3 . ?\e$(C$3\e(B)
1038 (#xeb4 . ?\e$(C$4\e(B)
1039 (#xeb5 . ?\e$(C$5\e(B)
1040 (#xeb6 . ?\e$(C$6\e(B)
1041 (#xeb7 . ?\e$(C$7\e(B)
1042 (#xeb8 . ?\e$(C$8\e(B)
1043 (#xeb9 . ?\e$(C$9\e(B)
1044 (#xeba . ?\e$(C$:\e(B)
1045 (#xebb . ?\e$(C$;\e(B)
1046 (#xebc . ?\e$(C$<\e(B)
1047 (#xebd . ?\e$(C$=\e(B)
1048 (#xebe . ?\e$(C$>\e(B)
1049 (#xebf . ?\e$(C$?\e(B)
1050 (#xec0 . ?\e$(C$@\e(B)
1051 (#xec1 . ?\e$(C$A\e(B)
1052 (#xec2 . ?\e$(C$B\e(B)
1053 (#xec3 . ?\e$(C$C\e(B)
1054 (#xec4 . ?\e$(C$D\e(B)
1055 (#xec5 . ?\e$(C$E\e(B)
1056 (#xec6 . ?\e$(C$F\e(B)
1057 (#xec7 . ?\e$(C$G\e(B)
1058 (#xec8 . ?\e$(C$H\e(B)
1059 (#xec9 . ?\e$(C$I\e(B)
1060 (#xeca . ?\e$(C$J\e(B)
1061 (#xecb . ?\e$(C$K\e(B)
1062 (#xecc . ?\e$(C$L\e(B)
1063 (#xecd . ?\e$(C$M\e(B)
1064 (#xece . ?\e$(C$N\e(B)
1065 (#xecf . ?\e$(C$O\e(B)
1066 (#xed0 . ?\e$(C$P\e(B)
1067 (#xed1 . ?\e$(C$Q\e(B)
1068 (#xed2 . ?\e$(C$R\e(B)
1069 (#xed3 . ?\e$(C$S\e(B)
1070 (#xed4 . ?\e$,1LH\e(B)
1071 (#xed5 . ?\e$,1LI\e(B)
1072 (#xed6 . ?\e$,1LJ\e(B)
1073 (#xed7 . ?\e$,1LK\e(B)
1074 (#xed8 . ?\e$,1LL\e(B)
1075 (#xed9 . ?\e$,1LM\e(B)
1076 (#xeda . ?\e$,1LN\e(B)
1077 (#xedb . ?\e$,1LO\e(B)
1078 (#xedc . ?\e$,1LP\e(B)
1079 (#xedd . ?\e$,1LQ\e(B)
1080 (#xede . ?\e$,1LR\e(B)
1081 (#xedf . ?\e$,1LS\e(B)
1082 (#xee0 . ?\e$,1LT\e(B)
1083 (#xee1 . ?\e$,1LU\e(B)
1084 (#xee2 . ?\e$,1LV\e(B)
1085 (#xee3 . ?\e$,1LW\e(B)
1086 (#xee4 . ?\e$,1LX\e(B)
1087 (#xee5 . ?\e$,1LY\e(B)
1088 (#xee6 . ?\e$,1LZ\e(B)
1089 (#xee7 . ?\e$,1L[\e(B)
1090 (#xee8 . ?\e$,1L\\e(B)
1091 (#xee9 . ?\e$,1L]\e(B)
1092 (#xeea . ?\e$,1L^\e(B)
1093 (#xeeb . ?\e$,1L_\e(B)
1094 (#xeec . ?\e$,1L`\e(B)
1095 (#xeed . ?\e$,1La\e(B)
1096 (#xeee . ?\e$,1Lb\e(B)
1097 (#xeef . ?\e$(C$]\e(B)
1098 (#xef0 . ?\e$(C$a\e(B)
1099 (#xef1 . ?\e$(C$h\e(B)
1100 (#xef2 . ?\e$(C$o\e(B)
1101 (#xef3 . ?\e$(C$q\e(B)
1102 (#xef4 . ?\e$(C$t\e(B)
1103 (#xef5 . ?\e$(C$v\e(B)
1104 (#xef6 . ?\e$(C$}\e(B)
1105 (#xef7 . ?\e$(C$~\e(B)
1106 (#xef8 . ?\e$,1M+\e(B)
1107 (#xef9 . ?\e$,1M0\e(B)
1108 (#xefa . ?\e$,1M9\e(B)
1109 (#xeff . ?\e$,1tI\e(B)
1115 (#x13bc . ?\e,b<\e(B)
1116 (#x13bd . ?\e,b=\e(B)
1117 (#x13be . ?\e,_/\e(B)
1119 (#x20a0 . ?\e$,1t@\e(B)
1120 (#x20a1 . ?\e$,1tA\e(B)
1121 (#x20a2 . ?\e$,1tB\e(B)
1122 (#x20a3 . ?\e$,1tC\e(B)
1123 (#x20a4 . ?\e$,1tD\e(B)
1124 (#x20a5 . ?\e$,1tE\e(B)
1125 (#x20a6 . ?\e$,1tF\e(B)
1126 (#x20a7 . ?\e$,1tG\e(B)
1127 (#x20a8 . ?\e$,1tH\e(B)
1128 (#x20aa . ?\e$,1tJ\e(B)
1129 (#x20ab . ?\e$,1tK\e(B)
1130 ;; Kana: Fixme: needs checking. Using Emacs to convert this to Unicode
1131 ;; and back changes this from "\e,b$
\e(B" (i.e., bytes "ESC
, b $ ESC
( B
") to
1132 ;; "\e,F$
\e(B" (i.e., bytes "ESC
, F $ ESC
( B
").
1133 (#x20ac . ?\e,b$\e(B)))
1134 (puthash (car pair) (cdr pair) x-keysym-table))
1136 ;; The following keysym codes for graphics are listed in the document
1137 ;; as not having unicodes available:
1139 ;; #x08b1 TOP LEFT SUMMATION Technical
1140 ;; #x08b2 BOTTOM LEFT SUMMATION Technical
1141 ;; #x08b3 TOP VERTICAL SUMMATION CONNECTOR Technical
1142 ;; #x08b4 BOTTOM VERTICAL SUMMATION CONNECTOR Technical
1143 ;; #x08b5 TOP RIGHT SUMMATION Technical
1144 ;; #x08b6 BOTTOM RIGHT SUMMATION Technical
1145 ;; #x08b7 RIGHT MIDDLE SUMMATION Technical
1146 ;; #x0aac SIGNIFICANT BLANK SYMBOL Publish
1147 ;; #x0abd DECIMAL POINT Publish
1148 ;; #x0abf MARKER Publish
1149 ;; #x0acb TRADEMARK SIGN IN CIRCLE Publish
1150 ;; #x0ada HEXAGRAM Publish
1151 ;; #x0aff CURSOR Publish
1152 ;; #x0dde THAI MAIHANAKAT Thai
1157 (define-obsolete-function-alias 'x-cut-buffer-or-selection-value
1158 'x-selection-value "24.1")
1160 ;; Arrange for the kill and yank functions to set and check the clipboard.
1162 (defun x-clipboard-yank ()
1163 "Insert the clipboard contents
, or the last stretch of killed text.
"
1164 (declare (obsolete clipboard-yank "25.1"))
1166 (let ((clipboard-text (gui--selection-value-internal 'CLIPBOARD))
1167 (select-enable-clipboard t))
1168 (if (and clipboard-text (> (length clipboard-text) 0))
1169 (kill-new clipboard-text))
1172 (declare-function accelerate-menu "xmenu.c
" (&optional frame) t)
1174 (defun x-menu-bar-open (&optional frame)
1175 "Open the menu bar if it is shown.
1176 `popup-menu
' is used if it is off.
"
1179 ((and (not (zerop (or (frame-parameter nil 'menu-bar-lines) 0)))
1180 (fboundp 'accelerate-menu))
1181 (accelerate-menu frame))
1183 (popup-menu (mouse-menu-bar-map) last-nonmenu-event))))
1186 ;;; Window system initialization.
1188 (defun x-win-suspend-error ()
1189 "Report an error when a suspend is attempted.
1190 This returns an error if any Emacs frames are X frames.
"
1191 ;; Don't allow suspending if any of the frames are X frames.
1192 (if (memq 'x (mapcar #'window-system (frame-list)))
1193 (error "Cannot suspend Emacs while running under X
")))
1195 (defvar x-initialized nil
1196 "Non-nil if the X window system has been initialized.
")
1198 (declare-function x-open-connection "xfns.c
"
1199 (display &optional xrm-string must-succeed))
1200 (declare-function x-server-max-request-size "xfns.c
" (&optional terminal))
1201 (declare-function x-get-resource "frame.c
"
1202 (attribute class &optional component subclass))
1203 (declare-function x-parse-geometry "frame.c
" (string))
1204 (defvar x-resource-name)
1205 (defvar x-display-name)
1206 (defvar x-command-line-resources)
1208 (defun x-initialize-window-system (&optional display)
1209 "Initialize Emacs for X frames and open the first connection to an X server.
"
1210 (cl-assert (not x-initialized))
1212 ;; Make sure we have a valid resource name.
1213 (or (stringp x-resource-name)
1215 (setq x-resource-name (invocation-name))
1217 ;; Change any . or * characters in x-resource-name to hyphens,
1218 ;; so as not to choke when we use it in X resource queries.
1219 (while (setq i (string-match "[.
*]" x-resource-name))
1220 (aset x-resource-name i ?-))))
1222 (x-open-connection (or display
1223 (setq x-display-name (or (getenv "DISPLAY
" (selected-frame))
1224 (getenv "DISPLAY
"))))
1225 x-command-line-resources
1226 ;; Exit Emacs with fatal error if this fails and we
1227 ;; are the initial display.
1228 (eq initial-window-system 'x))
1230 ;; Create the default fontset.
1231 (create-default-fontset)
1233 ;; Create the standard fontset.
1235 (create-fontset-from-fontset-spec standard-fontset-spec t)
1236 (error (display-warning
1238 (format "Creation of the standard fontset failed
: %s
" err)
1241 ;; Create fontset specified in X resources "Fontset-N
" (N is 0, 1, ...).
1242 (create-fontset-from-x-resource)
1244 ;; Set scroll bar mode to right if set by X resources. Default is left.
1245 (if (equal (x-get-resource "verticalScrollBars
" "ScrollBars
") "right
")
1246 (customize-set-variable 'scroll-bar-mode 'right))
1248 ;; Apply a geometry resource to the initial frame. Put it at the end
1249 ;; of the alist, so that anything specified on the command line takes
1251 (let* ((res-geometry (x-get-resource "geometry
" "Geometry
"))
1255 (setq parsed (x-parse-geometry res-geometry))
1256 ;; If the resource specifies a position,
1257 ;; call the position and size "user-specified
".
1258 (if (or (assq 'top parsed) (assq 'left parsed))
1259 (setq parsed (cons '(user-position . t)
1260 (cons '(user-size . t) parsed))))
1261 ;; All geometry parms apply to the initial frame.
1262 (setq initial-frame-alist (append initial-frame-alist parsed))
1263 ;; The size parms apply to all frames. Don't set it if there are
1264 ;; sizes there already (from command line).
1265 (if (and (assq 'height parsed)
1266 (not (assq 'height default-frame-alist)))
1267 (setq default-frame-alist
1268 (cons (cons 'height (cdr (assq 'height parsed)))
1269 default-frame-alist)))
1270 (if (and (assq 'width parsed)
1271 (not (assq 'width default-frame-alist)))
1272 (setq default-frame-alist
1273 (cons (cons 'width (cdr (assq 'width parsed)))
1274 default-frame-alist))))))
1276 ;; Check the reverseVideo resource.
1277 (let ((case-fold-search t))
1278 (let ((rv (x-get-resource "reverseVideo
" "ReverseVideo
")))
1280 (string-match "^
\\(true\\|yes
\\|on
\\)$
" rv))
1281 (setq default-frame-alist
1282 (cons '(reverse . t) default-frame-alist)))))
1284 ;; Set x-selection-timeout, measured in milliseconds.
1285 (let ((res-selection-timeout (x-get-resource "selectionTimeout
"
1286 "SelectionTimeout
")))
1287 (setq x-selection-timeout
1288 (if res-selection-timeout
1289 (string-to-number res-selection-timeout)
1292 ;; Don't let Emacs suspend under X.
1293 (add-hook 'suspend-hook 'x-win-suspend-error)
1295 ;; During initialization, we defer sending size hints to the window
1296 ;; manager, because that can induce a race condition:
1297 ;; http://lists.gnu.org/archive/html/emacs-devel/2008-10/msg00033.html
1298 ;; Send the size hints once initialization is done.
1299 (add-hook 'after-init-hook 'x-wm-set-size-hint)
1301 ;; Turn off window-splitting optimization; X is usually fast enough
1302 ;; that this is only annoying.
1303 (setq split-window-keep-point t)
1305 ;; Motif direct handling of f10 wasn't working right,
1306 ;; So temporarily we've turned it off in lwlib-Xm.c
1307 ;; and turned the Emacs f10 back on.
1308 ;; ;; Motif normally handles f10 itself, so don't try to handle it a second time.
1309 ;; (if (featurep 'motif)
1310 ;; (global-set-key [f10] 'ignore))
1312 ;; Enable CLIPBOARD copy/paste through menu bar commands.
1313 (menu-bar-enable-clipboard)
1315 ;; ;; Override Paste so it looks at CLIPBOARD first.
1316 ;; (define-key menu-bar-edit-menu [paste]
1317 ;; (append '(menu-item "Paste
" x-clipboard-yank
1318 ;; :enable (not buffer-read-only)
1319 ;; :help "Paste
(yank) text most recently cut
/copied
")
1322 (x-apply-session-resources)
1323 (setq x-initialized t))
1325 (add-to-list 'display-format-alist '("\\`[^
:]*:[0-
9]+\\(\\.
[0-
9]+\\)?
\\'" . x))
1326 (gui-method-define handle-args-function x #'x-handle-args)
1327 (gui-method-define frame-creation-function x #'x-create-frame-with-faces)
1328 (gui-method-define window-system-initialization x #'x-initialize-window-system)
1330 (gui-method-define gui-set-selection x
1331 (lambda (selection value)
1332 (if value (x-own-selection-internal selection value)
1333 (x-disown-selection-internal selection))))
1334 (gui-method-define gui-selection-owner-p x #'x-selection-owner-p)
1335 (gui-method-define gui-selection-exists-p x #'x-selection-exists-p)
1336 (gui-method-define gui-get-selection x #'x-get-selection-internal)
1338 ;; Initiate drag and drop
1339 (add-hook 'after-make-frame-functions 'x-dnd-init-frame)
1340 (define-key special-event-map [drag-n-drop] 'x-dnd-handle-drag-n-drop-event)
1342 (defcustom x-gtk-stock-map
1343 (mapcar (lambda (arg)
1344 (cons (purecopy (car arg)) (purecopy (cdr arg))))
1346 ("etc
/images
/new
" . ("document-new
" "gtk-new
"))
1347 ("etc
/images
/open
" . ("document-open
" "gtk-open
"))
1348 ("etc
/images
/diropen
" . "n
:system-file-manager
")
1349 ("etc
/images
/close
" . ("window-close
" "gtk-close
"))
1350 ("etc
/images
/save
" . ("document-save
" "gtk-save
"))
1351 ("etc
/images
/saveas
" . ("document-save-as
" "gtk-save-as
"))
1352 ("etc
/images
/undo
" . ("edit-undo
" "gtk-undo
"))
1353 ("etc
/images
/cut
" . ("edit-cut
" "gtk-cut
"))
1354 ("etc
/images
/copy
" . ("edit-copy
" "gtk-copy
"))
1355 ("etc
/images
/paste
" . ("edit-paste
" "gtk-paste
"))
1356 ("etc
/images
/search
" . ("edit-find
" "gtk-find
"))
1357 ("etc
/images
/print
" . ("document-print
" "gtk-print
"))
1358 ("etc
/images
/preferences
" . ("preferences-system
" "gtk-preferences
"))
1359 ("etc
/images
/help
" . ("help-browser
" "gtk-help
"))
1360 ("etc
/images
/left-arrow
" . ("go-previous
" "gtk-go-back
"))
1361 ("etc
/images
/right-arrow
" . ("go-next
" "gtk-go-forward
"))
1362 ("etc
/images
/home
" . ("go-home
" "gtk-home
"))
1363 ("etc
/images
/jump-to
" . ("go-jump
" "gtk-jump-to
"))
1364 ("etc
/images
/index
" . "gtk-index
")
1365 ("etc
/images
/exit
" . ("application-exit
" "gtk-quit
"))
1366 ("etc
/images
/cancel
" . "gtk-cancel
")
1367 ("etc
/images
/info
" . ("dialog-information
" "gtk-info
"))
1368 ("etc
/images
/bookmark_add
" . "n
:bookmark_add
")
1369 ;; Used in Gnus and/or MH-E:
1370 ("etc
/images
/attach
" . "gtk-attach
")
1371 ("etc
/images
/connect
" . "gtk-connect
")
1372 ("etc
/images
/contact
" . "gtk-contact
")
1373 ("etc
/images
/delete
" . ("edit-delete
" "gtk-delete
"))
1374 ("etc
/images
/describe
" . ("ocument-properties
" "gtk-properties
"))
1375 ("etc
/images
/disconnect
" . "gtk-disconnect
")
1376 ;; ("etc
/images
/exit
" . "gtk-exit
")
1377 ("etc
/images
/lock-broken
" . "gtk-lock_broken
")
1378 ("etc
/images
/lock-ok
" . "gtk-lock_ok
")
1379 ("etc
/images
/lock
" . "gtk-lock
")
1380 ("etc
/images
/next-page
" . "gtk-next-page
")
1381 ("etc
/images
/refresh
" . ("view-refresh
" "gtk-refresh
"))
1382 ("etc
/images
/sort-ascending
" . ("view-sort-ascending
" "gtk-sort-ascending
"))
1383 ("etc
/images
/sort-column-ascending
" . "gtk-sort-column-ascending
")
1384 ("etc
/images
/sort-criteria
" . "gtk-sort-criteria
")
1385 ("etc
/images
/sort-descending
" . ("view-sort-descending
"
1386 "gtk-sort-descending
"))
1387 ("etc
/images
/sort-row-ascending
" . "gtk-sort-row-ascending
")
1388 ("images
/gnus
/toggle-subscription
" . "gtk-task-recurring
")
1389 ("images
/mail
/compose
" . "gtk-mail-compose
")
1390 ("images
/mail
/copy
" . "gtk-mail-copy
")
1391 ("images
/mail
/forward
" . "gtk-mail-forward
")
1392 ("images
/mail
/inbox
" . "gtk-inbox
")
1393 ("images
/mail
/move
" . "gtk-mail-move
")
1394 ("images
/mail
/not-spam
" . "gtk-not-spam
")
1395 ("images
/mail
/outbox
" . "gtk-outbox
")
1396 ("images
/mail
/reply-all
" . "gtk-mail-reply-to-all
")
1397 ("images
/mail
/reply
" . "gtk-mail-reply
")
1398 ("images
/mail
/save-draft
" . "gtk-mail-handling
")
1399 ("images
/mail
/send
" . "gtk-mail-send
")
1400 ("images
/mail
/spam
" . "gtk-spam
")
1401 ;; Used for GDB Graphical Interface
1402 ("images
/gud
/break
" . "gtk-no
")
1403 ("images
/gud
/recstart
" . ("media-record
" "gtk-media-record
"))
1404 ("images
/gud
/recstop
" . ("media-playback-stop
" "gtk-media-stop
"))
1405 ;; No themed versions available:
1406 ;; mail/preview (combining stock_mail and stock_zoom)
1407 ;; mail/save (combining stock_mail, stock_save and stock_convert)
1409 "How icons for tool bars are mapped to Gtk
+ stock items.
1410 Emacs must be compiled with the Gtk
+ toolkit for this to have any effect.
1411 A value that begins with n
: denotes a named icon instead of a stock icon.
"
1413 :type '(choice (repeat
1415 (cons (string :tag "Emacs icon
")
1416 (choice (group (string :tag "Named
")
1417 (string :tag "Stock
"))
1418 (string :tag "Stock
/named
"))))))
1421 (defcustom icon-map-list '(x-gtk-stock-map)
1422 "A list of alists that map icon file names to stock
/named icons.
1423 The alists are searched in the order they appear. The first match is used.
1424 The keys in the alists are file names without extension and with two directory
1425 components. For example
, to map
/usr
/share
/emacs
/22.1.1/etc
/images
/open.xpm
1426 to stock item gtk-open
, use
:
1428 (\"etc
/images
/open
\" .
\"gtk-open
\")
1430 Themes also have named icons. To map to one of those
, use n
: before the name
:
1432 (\"etc
/images
/diropen
\" .
\"n
:system-file-manager
\")
1434 The list elements are either the symbol name for the alist or the
1437 If you don
't want stock icons
, set the variable to nil.
"
1439 :type '(choice (const :tag "Don
't use stock icons
" nil)
1440 (repeat (choice symbol
1441 (cons (string :tag "Emacs icon
")
1442 (string :tag "Stock
/named
")))))
1445 (defconst x-gtk-stock-cache (make-hash-table :weakness t :test 'equal))
1447 (defun x-gtk-map-stock (file)
1448 "Map icon with file name FILE to a Gtk
+ stock name.
1449 This uses
`icon-map-list
' to map icon file names to stock icon names.
"
1450 (when (stringp file)
1451 (or (gethash file x-gtk-stock-cache)
1455 (let* ((file-sans (file-name-sans-extension file))
1456 (key (and (string-match "/\\([^
/]+/[^
/]+/[^
/]+$
\\)"
1458 (match-string 1 file-sans)))
1459 (icon-map icon-map-list)
1461 (while (and (null value) icon-map)
1462 (setq elem (car icon-map)
1463 value (assoc-string (or key file-sans)
1467 icon-map (cdr icon-map)))
1468 (and value (cdr value))))
1469 x-gtk-stock-cache))))
1471 (global-set-key [XF86WakeUp] 'ignore)
1475 ;;; x-win.el ends here