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