Mercurial > emacs
annotate lisp/term/x-win.el @ 89240:51d2baa0181d
Remove some ancient compatibility code. Populate
x-keysym-table.
author | Dave Love <fx@gnu.org> |
---|---|
date | Sun, 27 Oct 2002 21:10:00 +0000 |
parents | 5676a5820a04 |
children | 27eed9fab7f5 |
rev | line source |
---|---|
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1 ;;; x-win.el --- parse relevant switches and set up for X -*-coding: utf-8-emacs;-*- |
14170
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
2 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
3 ;; Copyright (C) 1993, 1994, 2001, 2002 Free Software Foundation, Inc. |
2157
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
4 |
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
5 ;; Author: FSF |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
6 ;; Keywords: terminals, i18n |
2157
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
7 |
14170
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
9 |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
10 ;; 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
|
11 ;; it under the terms of the GNU General Public License as published by |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
13 ;; any later version. |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
14 |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
15 ;; 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
|
16 ;; 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
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
18 ;; GNU General Public License for more details. |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
19 |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
20 ;; 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
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
23cc3f54e536
Update FSF's office address.
Erik Naggum <erik@naggum.no>
parents:
14122
diff
changeset
|
23 ;; Boston, MA 02111-1307, USA. |
54 | 24 |
2157
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
25 ;;; Commentary: |
54 | 26 |
27 ;; X-win.el: this file is loaded from ../lisp/startup.el when it recognizes | |
28 ;; that X windows are to be used. Command line switches are parsed and those | |
29 ;; pertaining to X are processed and removed from the command line. The | |
30 ;; X display is opened and hooks are set for popping up the initial window. | |
31 | |
32 ;; startup.el will then examine startup files, and eventually call the hooks | |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
33 ;; which create the first window(s). |
2157
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
34 |
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
35 ;;; Code: |
54 | 36 |
37 ;; These are the standard X switches from the Xt Initialize.c file of | |
38 ;; Release 4. | |
39 | |
40 ;; Command line Resource Manager string | |
41 | |
42 ;; +rv *reverseVideo | |
43 ;; +synchronous *synchronous | |
44 ;; -background *background | |
45 ;; -bd *borderColor | |
46 ;; -bg *background | |
47 ;; -bordercolor *borderColor | |
48 ;; -borderwidth .borderWidth | |
49 ;; -bw .borderWidth | |
50 ;; -display .display | |
51 ;; -fg *foreground | |
52 ;; -fn *font | |
53 ;; -font *font | |
54 ;; -foreground *foreground | |
55 ;; -geometry .geometry | |
3070
08003ba2ac71
* x-win.el (command-switch-alist, x-switch-definitions): Treat
Jim Blandy <jimb@redhat.com>
parents:
3068
diff
changeset
|
56 ;; -i .iconType |
08003ba2ac71
* x-win.el (command-switch-alist, x-switch-definitions): Treat
Jim Blandy <jimb@redhat.com>
parents:
3068
diff
changeset
|
57 ;; -itype .iconType |
54 | 58 ;; -iconic .iconic |
59 ;; -name .name | |
60 ;; -reverse *reverseVideo | |
61 ;; -rv *reverseVideo | |
62 ;; -selectionTimeout .selectionTimeout | |
63 ;; -synchronous *synchronous | |
64 ;; -xrm | |
65 | |
66 ;; An alist of X options and the function which handles them. See | |
67 ;; ../startup.el. | |
68 | |
273 | 69 (if (not (eq window-system 'x)) |
4132
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
70 (error "%s: Loading x-win.el but not compiled for X" (invocation-name))) |
273 | 71 |
779 | 72 (require 'frame) |
467 | 73 (require 'mouse) |
1972
b0cde2f5164d
* term/x-win.el: Require `scroll-bar', not `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1954
diff
changeset
|
74 (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
|
75 (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
|
76 (require 'select) |
2808 | 77 (require 'menu-bar) |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
78 (require 'fontset) |
273 | 79 |
3373
4177a984e5c0
(x-invocation-args): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
3287
diff
changeset
|
80 (defvar x-invocation-args) |
4177a984e5c0
(x-invocation-args): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
3287
diff
changeset
|
81 |
3081
63c51f1e885b
Pass x-command-line-resources to x-open-connection.
Richard M. Stallman <rms@gnu.org>
parents:
3070
diff
changeset
|
82 (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
|
83 |
54 | 84 ;; Handler for switches of the form "-switch value" or "-switch". |
85 (defun x-handle-switch (switch) | |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
86 (let ((aelt (assoc switch command-line-x-option-alist))) |
54 | 87 (if aelt |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
88 (let ((param (nth 3 aelt)) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
89 (value (nth 4 aelt))) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
90 (if value |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
91 (setq default-frame-alist |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
92 (cons (cons param value) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
93 default-frame-alist)) |
779 | 94 (setq default-frame-alist |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
95 (cons (cons param |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
96 (car x-invocation-args)) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
97 default-frame-alist) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
98 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
|
99 |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
100 ;; 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
|
101 (defun x-handle-numeric-switch (switch) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
102 (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
|
103 (if aelt |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
104 (let ((param (nth 3 aelt))) |
779 | 105 (setq default-frame-alist |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
106 (cons (cons param |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
107 (string-to-int (car x-invocation-args))) |
779 | 108 default-frame-alist) |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
109 x-invocation-args |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
110 (cdr x-invocation-args)))))) |
54 | 111 |
42710
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
112 ;; Handle options that apply to initial frame only |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
113 (defun x-handle-initial-switch (switch) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
114 (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
|
115 (if aelt |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
116 (let ((param (nth 3 aelt)) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
117 (value (nth 4 aelt))) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
118 (if value |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
119 (setq initial-frame-alist |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
120 (cons (cons param value) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
121 initial-frame-alist)) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
122 (setq initial-frame-alist |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
123 (cons (cons param |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
124 (car x-invocation-args)) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
125 initial-frame-alist) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
126 x-invocation-args (cdr x-invocation-args))))))) |
036b67c8fc3f
(x-handle-initial-switch): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
42286
diff
changeset
|
127 |
4306
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
128 ;; Make -iconic apply only to the initial frame! |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
129 (defun x-handle-iconic (switch) |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
130 (setq initial-frame-alist |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
131 (cons '(visibility . icon) initial-frame-alist))) |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
132 |
4132
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
133 ;; 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
|
134 (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
|
135 (unless (consp x-invocation-args) |
30246e46027e
(x-handle-xrm-switch): Accept more than one -xrm
Gerd Moellmann <gerd@gnu.org>
parents:
33917
diff
changeset
|
136 (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
|
137 (setq x-command-line-resources |
30246e46027e
(x-handle-xrm-switch): Accept more than one -xrm
Gerd Moellmann <gerd@gnu.org>
parents:
33917
diff
changeset
|
138 (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
|
139 (car x-invocation-args) |
30246e46027e
(x-handle-xrm-switch): Accept more than one -xrm
Gerd Moellmann <gerd@gnu.org>
parents:
33917
diff
changeset
|
140 (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
|
141 (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
|
142 |
54 | 143 ;; Handle the geometry option |
144 (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
|
145 (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
|
146 (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
|
147 (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
|
148 (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
|
149 (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
|
150 (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
|
151 (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
|
152 (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
|
153 '((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
|
154 (if height (list height)) |
42932
5676a5820a04
(x-handle-geometry): Put sizes on both
Richard M. Stallman <rms@gnu.org>
parents:
42710
diff
changeset
|
155 (if width (list width))) |
5676a5820a04
(x-handle-geometry): Put sizes on both
Richard M. Stallman <rms@gnu.org>
parents:
42710
diff
changeset
|
156 initial-frame-alist |
5676a5820a04
(x-handle-geometry): Put sizes on both
Richard M. Stallman <rms@gnu.org>
parents:
42710
diff
changeset
|
157 (append initial-frame-alist |
5676a5820a04
(x-handle-geometry): Put sizes on both
Richard M. Stallman <rms@gnu.org>
parents:
42710
diff
changeset
|
158 '((user-size . t)) |
5676a5820a04
(x-handle-geometry): Put sizes on both
Richard M. Stallman <rms@gnu.org>
parents:
42710
diff
changeset
|
159 (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
|
160 (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
|
161 (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
|
162 (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
|
163 (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
|
164 '((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
|
165 (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
|
166 (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
|
167 (setq x-invocation-args (cdr x-invocation-args)))) |
54 | 168 |
15538
9ed106f6e1be
(x-handle-name-switch): Renamed from x-handle-name-rn-switch.
Richard M. Stallman <rms@gnu.org>
parents:
15058
diff
changeset
|
169 ;; 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
|
170 ;; 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
|
171 ;; 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
|
172 (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
|
173 (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
|
174 (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
|
175 (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
|
176 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
|
177 (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
|
178 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
|
179 |
54 | 180 (defvar x-display-name nil |
779 | 181 "The X display name specifying server and X frame.") |
54 | 182 |
183 (defun x-handle-display (switch) | |
184 (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
|
185 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
|
186 ;; 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
|
187 ;; 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
|
188 ;; 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
|
189 ;; 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
|
190 (setenv "DISPLAY" x-display-name)) |
54 | 191 |
321 | 192 (defun x-handle-args (args) |
6698
b107e54218fe
(x-select-enable-clipboard): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6399
diff
changeset
|
193 "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
|
194 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
|
195 `x-invocation-args', from which the X-related things are extracted, first |
321 | 196 the switch (e.g., \"-fg\") in the following code, and possible values |
7639 | 197 \(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
|
198 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
|
199 ;; We use ARGS to accumulate the args that we don't handle here, to return. |
273 | 200 (setq x-invocation-args args |
201 args nil) | |
16835
7584a510ad85
(x-handle-args): Stop arg processing
Richard M. Stallman <rms@gnu.org>
parents:
15815
diff
changeset
|
202 (while (and x-invocation-args |
7584a510ad85
(x-handle-args): Stop arg processing
Richard M. Stallman <rms@gnu.org>
parents:
15815
diff
changeset
|
203 (not (equal (car x-invocation-args) "--"))) |
273 | 204 (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
|
205 (orig-this-switch this-switch) |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
206 completion argval aelt handler) |
273 | 207 (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
|
208 ;; 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
|
209 ;; 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
|
210 (if (string-match "^--[^=]*=" this-switch) |
bb1027a75918
(x-option-alist): New variable now holds
Richard M. Stallman <rms@gnu.org>
parents:
9681
diff
changeset
|
211 (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
|
212 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
|
213 ;; Complete names of long options. |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
214 (if (string-match "^--" this-switch) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
215 (progn |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
216 (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
|
217 (if (eq completion t) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
218 ;; Exact match for long option. |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
219 nil |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
220 (if (stringp completion) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
221 (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
|
222 ;; Check for abbreviated long option. |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
223 (or elt |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
224 (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
|
225 (setq this-switch completion)))))) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
226 (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
|
227 (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
|
228 (if handler |
10027
bb1027a75918
(x-option-alist): New variable now holds
Richard M. Stallman <rms@gnu.org>
parents:
9681
diff
changeset
|
229 (if argval |
bb1027a75918
(x-option-alist): New variable now holds
Richard M. Stallman <rms@gnu.org>
parents:
9681
diff
changeset
|
230 (let ((x-invocation-args |
bb1027a75918
(x-option-alist): New variable now holds
Richard M. Stallman <rms@gnu.org>
parents:
9681
diff
changeset
|
231 (cons argval x-invocation-args))) |
13891
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
232 (funcall handler this-switch)) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
233 (funcall handler this-switch)) |
0e813fc58516
(x-handle-switch, x-handle-numeric-switch)
Richard M. Stallman <rms@gnu.org>
parents:
13376
diff
changeset
|
234 (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
|
235 (nconc (nreverse args) x-invocation-args)) |
54 | 236 |
237 ;; | |
238 ;; Standard X cursor shapes, courtesy of Mr. Fox, who wanted ALL of them. | |
239 ;; | |
240 | |
241 (defconst x-pointer-X-cursor 0) | |
242 (defconst x-pointer-arrow 2) | |
243 (defconst x-pointer-based-arrow-down 4) | |
244 (defconst x-pointer-based-arrow-up 6) | |
245 (defconst x-pointer-boat 8) | |
246 (defconst x-pointer-bogosity 10) | |
247 (defconst x-pointer-bottom-left-corner 12) | |
248 (defconst x-pointer-bottom-right-corner 14) | |
249 (defconst x-pointer-bottom-side 16) | |
250 (defconst x-pointer-bottom-tee 18) | |
251 (defconst x-pointer-box-spiral 20) | |
252 (defconst x-pointer-center-ptr 22) | |
253 (defconst x-pointer-circle 24) | |
254 (defconst x-pointer-clock 26) | |
255 (defconst x-pointer-coffee-mug 28) | |
256 (defconst x-pointer-cross 30) | |
257 (defconst x-pointer-cross-reverse 32) | |
258 (defconst x-pointer-crosshair 34) | |
259 (defconst x-pointer-diamond-cross 36) | |
260 (defconst x-pointer-dot 38) | |
261 (defconst x-pointer-dotbox 40) | |
262 (defconst x-pointer-double-arrow 42) | |
263 (defconst x-pointer-draft-large 44) | |
264 (defconst x-pointer-draft-small 46) | |
265 (defconst x-pointer-draped-box 48) | |
266 (defconst x-pointer-exchange 50) | |
267 (defconst x-pointer-fleur 52) | |
268 (defconst x-pointer-gobbler 54) | |
269 (defconst x-pointer-gumby 56) | |
270 (defconst x-pointer-hand1 58) | |
271 (defconst x-pointer-hand2 60) | |
272 (defconst x-pointer-heart 62) | |
273 (defconst x-pointer-icon 64) | |
274 (defconst x-pointer-iron-cross 66) | |
275 (defconst x-pointer-left-ptr 68) | |
276 (defconst x-pointer-left-side 70) | |
277 (defconst x-pointer-left-tee 72) | |
278 (defconst x-pointer-leftbutton 74) | |
279 (defconst x-pointer-ll-angle 76) | |
280 (defconst x-pointer-lr-angle 78) | |
281 (defconst x-pointer-man 80) | |
282 (defconst x-pointer-middlebutton 82) | |
283 (defconst x-pointer-mouse 84) | |
284 (defconst x-pointer-pencil 86) | |
285 (defconst x-pointer-pirate 88) | |
286 (defconst x-pointer-plus 90) | |
287 (defconst x-pointer-question-arrow 92) | |
288 (defconst x-pointer-right-ptr 94) | |
289 (defconst x-pointer-right-side 96) | |
290 (defconst x-pointer-right-tee 98) | |
291 (defconst x-pointer-rightbutton 100) | |
292 (defconst x-pointer-rtl-logo 102) | |
293 (defconst x-pointer-sailboat 104) | |
294 (defconst x-pointer-sb-down-arrow 106) | |
295 (defconst x-pointer-sb-h-double-arrow 108) | |
296 (defconst x-pointer-sb-left-arrow 110) | |
297 (defconst x-pointer-sb-right-arrow 112) | |
298 (defconst x-pointer-sb-up-arrow 114) | |
299 (defconst x-pointer-sb-v-double-arrow 116) | |
300 (defconst x-pointer-shuttle 118) | |
301 (defconst x-pointer-sizing 120) | |
302 (defconst x-pointer-spider 122) | |
303 (defconst x-pointer-spraycan 124) | |
304 (defconst x-pointer-star 126) | |
305 (defconst x-pointer-target 128) | |
306 (defconst x-pointer-tcross 130) | |
307 (defconst x-pointer-top-left-arrow 132) | |
308 (defconst x-pointer-top-left-corner 134) | |
309 (defconst x-pointer-top-right-corner 136) | |
310 (defconst x-pointer-top-side 138) | |
311 (defconst x-pointer-top-tee 140) | |
312 (defconst x-pointer-trek 142) | |
313 (defconst x-pointer-ul-angle 144) | |
314 (defconst x-pointer-umbrella 146) | |
315 (defconst x-pointer-ur-angle 148) | |
316 (defconst x-pointer-watch 150) | |
317 (defconst x-pointer-xterm 152) | |
318 | |
319 ;; | |
320 ;; Available colors | |
321 ;; | |
322 | |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
323 (defvar x-colors '("LightGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
324 "light green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
325 "DarkRed" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
326 "dark red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
327 "DarkMagenta" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
328 "dark magenta" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
329 "DarkCyan" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
330 "dark cyan" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
331 "DarkBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
332 "dark blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
333 "DarkGray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
334 "dark gray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
335 "DarkGrey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
336 "dark grey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
337 "grey100" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
338 "gray100" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
339 "grey99" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
340 "gray99" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
341 "grey98" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
342 "gray98" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
343 "grey97" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
344 "gray97" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
345 "grey96" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
346 "gray96" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
347 "grey95" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
348 "gray95" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
349 "grey94" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
350 "gray94" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
351 "grey93" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
352 "gray93" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
353 "grey92" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
354 "gray92" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
355 "grey91" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
356 "gray91" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
357 "grey90" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
358 "gray90" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
359 "grey89" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
360 "gray89" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
361 "grey88" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
362 "gray88" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
363 "grey87" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
364 "gray87" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
365 "grey86" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
366 "gray86" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
367 "grey85" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
368 "gray85" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
369 "grey84" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
370 "gray84" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
371 "grey83" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
372 "gray83" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
373 "grey82" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
374 "gray82" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
375 "grey81" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
376 "gray81" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
377 "grey80" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
378 "gray80" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
379 "grey79" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
380 "gray79" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
381 "grey78" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
382 "gray78" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
383 "grey77" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
384 "gray77" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
385 "grey76" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
386 "gray76" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
387 "grey75" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
388 "gray75" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
389 "grey74" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
390 "gray74" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
391 "grey73" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
392 "gray73" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
393 "grey72" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
394 "gray72" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
395 "grey71" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
396 "gray71" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
397 "grey70" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
398 "gray70" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
399 "grey69" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
400 "gray69" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
401 "grey68" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
402 "gray68" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
403 "grey67" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
404 "gray67" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
405 "grey66" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
406 "gray66" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
407 "grey65" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
408 "gray65" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
409 "grey64" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
410 "gray64" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
411 "grey63" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
412 "gray63" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
413 "grey62" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
414 "gray62" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
415 "grey61" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
416 "gray61" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
417 "grey60" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
418 "gray60" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
419 "grey59" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
420 "gray59" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
421 "grey58" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
422 "gray58" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
423 "grey57" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
424 "gray57" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
425 "grey56" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
426 "gray56" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
427 "grey55" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
428 "gray55" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
429 "grey54" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
430 "gray54" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
431 "grey53" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
432 "gray53" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
433 "grey52" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
434 "gray52" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
435 "grey51" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
436 "gray51" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
437 "grey50" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
438 "gray50" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
439 "grey49" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
440 "gray49" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
441 "grey48" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
442 "gray48" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
443 "grey47" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
444 "gray47" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
445 "grey46" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
446 "gray46" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
447 "grey45" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
448 "gray45" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
449 "grey44" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
450 "gray44" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
451 "grey43" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
452 "gray43" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
453 "grey42" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
454 "gray42" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
455 "grey41" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
456 "gray41" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
457 "grey40" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
458 "gray40" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
459 "grey39" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
460 "gray39" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
461 "grey38" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
462 "gray38" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
463 "grey37" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
464 "gray37" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
465 "grey36" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
466 "gray36" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
467 "grey35" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
468 "gray35" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
469 "grey34" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
470 "gray34" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
471 "grey33" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
472 "gray33" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
473 "grey32" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
474 "gray32" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
475 "grey31" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
476 "gray31" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
477 "grey30" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
478 "gray30" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
479 "grey29" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
480 "gray29" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
481 "grey28" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
482 "gray28" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
483 "grey27" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
484 "gray27" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
485 "grey26" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
486 "gray26" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
487 "grey25" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
488 "gray25" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
489 "grey24" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
490 "gray24" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
491 "grey23" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
492 "gray23" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
493 "grey22" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
494 "gray22" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
495 "grey21" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
496 "gray21" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
497 "grey20" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
498 "gray20" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
499 "grey19" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
500 "gray19" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
501 "grey18" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
502 "gray18" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
503 "grey17" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
504 "gray17" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
505 "grey16" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
506 "gray16" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
507 "grey15" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
508 "gray15" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
509 "grey14" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
510 "gray14" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
511 "grey13" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
512 "gray13" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
513 "grey12" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
514 "gray12" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
515 "grey11" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
516 "gray11" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
517 "grey10" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
518 "gray10" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
519 "grey9" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
520 "gray9" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
521 "grey8" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
522 "gray8" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
523 "grey7" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
524 "gray7" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
525 "grey6" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
526 "gray6" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
527 "grey5" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
528 "gray5" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
529 "grey4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
530 "gray4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
531 "grey3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
532 "gray3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
533 "grey2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
534 "gray2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
535 "grey1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
536 "gray1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
537 "grey0" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
538 "gray0" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
539 "thistle4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
540 "thistle3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
541 "thistle2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
542 "thistle1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
543 "MediumPurple4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
544 "MediumPurple3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
545 "MediumPurple2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
546 "MediumPurple1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
547 "purple4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
548 "purple3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
549 "purple2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
550 "purple1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
551 "DarkOrchid4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
552 "DarkOrchid3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
553 "DarkOrchid2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
554 "DarkOrchid1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
555 "MediumOrchid4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
556 "MediumOrchid3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
557 "MediumOrchid2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
558 "MediumOrchid1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
559 "plum4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
560 "plum3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
561 "plum2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
562 "plum1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
563 "orchid4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
564 "orchid3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
565 "orchid2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
566 "orchid1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
567 "magenta4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
568 "magenta3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
569 "magenta2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
570 "magenta1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
571 "VioletRed4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
572 "VioletRed3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
573 "VioletRed2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
574 "VioletRed1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
575 "maroon4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
576 "maroon3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
577 "maroon2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
578 "maroon1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
579 "PaleVioletRed4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
580 "PaleVioletRed3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
581 "PaleVioletRed2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
582 "PaleVioletRed1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
583 "LightPink4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
584 "LightPink3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
585 "LightPink2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
586 "LightPink1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
587 "pink4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
588 "pink3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
589 "pink2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
590 "pink1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
591 "HotPink4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
592 "HotPink3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
593 "HotPink2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
594 "HotPink1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
595 "DeepPink4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
596 "DeepPink3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
597 "DeepPink2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
598 "DeepPink1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
599 "red4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
600 "red3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
601 "red2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
602 "red1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
603 "OrangeRed4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
604 "OrangeRed3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
605 "OrangeRed2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
606 "OrangeRed1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
607 "tomato4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
608 "tomato3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
609 "tomato2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
610 "tomato1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
611 "coral4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
612 "coral3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
613 "coral2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
614 "coral1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
615 "DarkOrange4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
616 "DarkOrange3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
617 "DarkOrange2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
618 "DarkOrange1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
619 "orange4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
620 "orange3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
621 "orange2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
622 "orange1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
623 "LightSalmon4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
624 "LightSalmon3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
625 "LightSalmon2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
626 "LightSalmon1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
627 "salmon4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
628 "salmon3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
629 "salmon2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
630 "salmon1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
631 "brown4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
632 "brown3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
633 "brown2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
634 "brown1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
635 "firebrick4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
636 "firebrick3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
637 "firebrick2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
638 "firebrick1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
639 "chocolate4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
640 "chocolate3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
641 "chocolate2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
642 "chocolate1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
643 "tan4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
644 "tan3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
645 "tan2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
646 "tan1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
647 "wheat4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
648 "wheat3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
649 "wheat2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
650 "wheat1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
651 "burlywood4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
652 "burlywood3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
653 "burlywood2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
654 "burlywood1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
655 "sienna4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
656 "sienna3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
657 "sienna2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
658 "sienna1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
659 "IndianRed4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
660 "IndianRed3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
661 "IndianRed2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
662 "IndianRed1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
663 "RosyBrown4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
664 "RosyBrown3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
665 "RosyBrown2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
666 "RosyBrown1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
667 "DarkGoldenrod4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
668 "DarkGoldenrod3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
669 "DarkGoldenrod2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
670 "DarkGoldenrod1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
671 "goldenrod4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
672 "goldenrod3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
673 "goldenrod2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
674 "goldenrod1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
675 "gold4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
676 "gold3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
677 "gold2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
678 "gold1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
679 "yellow4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
680 "yellow3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
681 "yellow2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
682 "yellow1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
683 "LightYellow4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
684 "LightYellow3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
685 "LightYellow2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
686 "LightYellow1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
687 "LightGoldenrod4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
688 "LightGoldenrod3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
689 "LightGoldenrod2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
690 "LightGoldenrod1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
691 "khaki4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
692 "khaki3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
693 "khaki2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
694 "khaki1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
695 "DarkOliveGreen4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
696 "DarkOliveGreen3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
697 "DarkOliveGreen2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
698 "DarkOliveGreen1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
699 "OliveDrab4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
700 "OliveDrab3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
701 "OliveDrab2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
702 "OliveDrab1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
703 "chartreuse4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
704 "chartreuse3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
705 "chartreuse2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
706 "chartreuse1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
707 "green4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
708 "green3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
709 "green2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
710 "green1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
711 "SpringGreen4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
712 "SpringGreen3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
713 "SpringGreen2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
714 "SpringGreen1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
715 "PaleGreen4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
716 "PaleGreen3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
717 "PaleGreen2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
718 "PaleGreen1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
719 "SeaGreen4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
720 "SeaGreen3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
721 "SeaGreen2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
722 "SeaGreen1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
723 "DarkSeaGreen4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
724 "DarkSeaGreen3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
725 "DarkSeaGreen2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
726 "DarkSeaGreen1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
727 "aquamarine4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
728 "aquamarine3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
729 "aquamarine2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
730 "aquamarine1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
731 "DarkSlateGray4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
732 "DarkSlateGray3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
733 "DarkSlateGray2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
734 "DarkSlateGray1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
735 "cyan4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
736 "cyan3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
737 "cyan2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
738 "cyan1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
739 "turquoise4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
740 "turquoise3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
741 "turquoise2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
742 "turquoise1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
743 "CadetBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
744 "CadetBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
745 "CadetBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
746 "CadetBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
747 "PaleTurquoise4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
748 "PaleTurquoise3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
749 "PaleTurquoise2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
750 "PaleTurquoise1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
751 "LightCyan4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
752 "LightCyan3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
753 "LightCyan2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
754 "LightCyan1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
755 "LightBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
756 "LightBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
757 "LightBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
758 "LightBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
759 "LightSteelBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
760 "LightSteelBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
761 "LightSteelBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
762 "LightSteelBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
763 "SlateGray4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
764 "SlateGray3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
765 "SlateGray2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
766 "SlateGray1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
767 "LightSkyBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
768 "LightSkyBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
769 "LightSkyBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
770 "LightSkyBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
771 "SkyBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
772 "SkyBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
773 "SkyBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
774 "SkyBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
775 "DeepSkyBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
776 "DeepSkyBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
777 "DeepSkyBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
778 "DeepSkyBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
779 "SteelBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
780 "SteelBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
781 "SteelBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
782 "SteelBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
783 "DodgerBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
784 "DodgerBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
785 "DodgerBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
786 "DodgerBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
787 "blue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
788 "blue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
789 "blue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
790 "blue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
791 "RoyalBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
792 "RoyalBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
793 "RoyalBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
794 "RoyalBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
795 "SlateBlue4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
796 "SlateBlue3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
797 "SlateBlue2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
798 "SlateBlue1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
799 "azure4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
800 "azure3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
801 "azure2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
802 "azure1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
803 "MistyRose4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
804 "MistyRose3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
805 "MistyRose2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
806 "MistyRose1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
807 "LavenderBlush4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
808 "LavenderBlush3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
809 "LavenderBlush2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
810 "LavenderBlush1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
811 "honeydew4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
812 "honeydew3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
813 "honeydew2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
814 "honeydew1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
815 "ivory4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
816 "ivory3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
817 "ivory2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
818 "ivory1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
819 "cornsilk4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
820 "cornsilk3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
821 "cornsilk2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
822 "cornsilk1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
823 "LemonChiffon4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
824 "LemonChiffon3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
825 "LemonChiffon2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
826 "LemonChiffon1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
827 "NavajoWhite4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
828 "NavajoWhite3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
829 "NavajoWhite2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
830 "NavajoWhite1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
831 "PeachPuff4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
832 "PeachPuff3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
833 "PeachPuff2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
834 "PeachPuff1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
835 "bisque4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
836 "bisque3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
837 "bisque2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
838 "bisque1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
839 "AntiqueWhite4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
840 "AntiqueWhite3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
841 "AntiqueWhite2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
842 "AntiqueWhite1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
843 "seashell4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
844 "seashell3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
845 "seashell2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
846 "seashell1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
847 "snow4" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
848 "snow3" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
849 "snow2" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
850 "snow1" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
851 "thistle" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
852 "MediumPurple" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
853 "medium purple" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
854 "purple" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
855 "BlueViolet" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
856 "blue violet" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
857 "DarkViolet" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
858 "dark violet" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
859 "DarkOrchid" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
860 "dark orchid" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
861 "MediumOrchid" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
862 "medium orchid" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
863 "orchid" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
864 "plum" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
865 "violet" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
866 "magenta" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
867 "VioletRed" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
868 "violet red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
869 "MediumVioletRed" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
870 "medium violet red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
871 "maroon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
872 "PaleVioletRed" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
873 "pale violet red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
874 "LightPink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
875 "light pink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
876 "pink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
877 "DeepPink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
878 "deep pink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
879 "HotPink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
880 "hot pink" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
881 "red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
882 "OrangeRed" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
883 "orange red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
884 "tomato" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
885 "LightCoral" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
886 "light coral" |
54 | 887 "coral" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
888 "DarkOrange" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
889 "dark orange" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
890 "orange" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
891 "LightSalmon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
892 "light salmon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
893 "salmon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
894 "DarkSalmon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
895 "dark salmon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
896 "brown" |
54 | 897 "firebrick" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
898 "chocolate" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
899 "tan" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
900 "SandyBrown" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
901 "sandy brown" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
902 "wheat" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
903 "beige" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
904 "burlywood" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
905 "peru" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
906 "sienna" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
907 "SaddleBrown" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
908 "saddle brown" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
909 "IndianRed" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
910 "indian red" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
911 "RosyBrown" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
912 "rosy brown" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
913 "DarkGoldenrod" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
914 "dark goldenrod" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
915 "goldenrod" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
916 "LightGoldenrod" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
917 "light goldenrod" |
54 | 918 "gold" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
919 "yellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
920 "LightYellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
921 "light yellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
922 "LightGoldenrodYellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
923 "light goldenrod yellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
924 "PaleGoldenrod" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
925 "pale goldenrod" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
926 "khaki" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
927 "DarkKhaki" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
928 "dark khaki" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
929 "OliveDrab" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
930 "olive drab" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
931 "ForestGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
932 "forest green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
933 "YellowGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
934 "yellow green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
935 "LimeGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
936 "lime green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
937 "GreenYellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
938 "green yellow" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
939 "MediumSpringGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
940 "medium spring green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
941 "chartreuse" |
54 | 942 "green" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
943 "LawnGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
944 "lawn green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
945 "SpringGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
946 "spring green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
947 "PaleGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
948 "pale green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
949 "LightSeaGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
950 "light sea green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
951 "MediumSeaGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
952 "medium sea green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
953 "SeaGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
954 "sea green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
955 "DarkSeaGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
956 "dark sea green" |
54 | 957 "DarkOliveGreen" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
958 "dark olive green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
959 "DarkGreen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
960 "dark green" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
961 "aquamarine" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
962 "MediumAquamarine" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
963 "medium aquamarine" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
964 "CadetBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
965 "cadet blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
966 "LightCyan" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
967 "light cyan" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
968 "cyan" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
969 "turquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
970 "MediumTurquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
971 "medium turquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
972 "DarkTurquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
973 "dark turquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
974 "PaleTurquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
975 "pale turquoise" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
976 "PowderBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
977 "powder blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
978 "LightBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
979 "light blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
980 "LightSteelBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
981 "light steel blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
982 "SteelBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
983 "steel blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
984 "LightSkyBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
985 "light sky blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
986 "SkyBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
987 "sky blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
988 "DeepSkyBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
989 "deep sky blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
990 "DodgerBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
991 "dodger blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
992 "blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
993 "RoyalBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
994 "royal blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
995 "MediumBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
996 "medium blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
997 "LightSlateBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
998 "light slate blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
999 "MediumSlateBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1000 "medium slate blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1001 "SlateBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1002 "slate blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1003 "DarkSlateBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1004 "dark slate blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1005 "CornflowerBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1006 "cornflower blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1007 "NavyBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1008 "navy blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1009 "navy" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1010 "MidnightBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1011 "midnight blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1012 "LightGray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1013 "light gray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1014 "LightGrey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1015 "light grey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1016 "grey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1017 "gray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1018 "LightSlateGrey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1019 "light slate grey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1020 "LightSlateGray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1021 "light slate gray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1022 "SlateGrey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1023 "slate grey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1024 "SlateGray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1025 "slate gray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1026 "DimGrey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1027 "dim grey" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1028 "DimGray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1029 "dim gray" |
54 | 1030 "DarkSlateGrey" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1031 "dark slate grey" |
54 | 1032 "DarkSlateGray" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1033 "dark slate gray" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1034 "black" |
54 | 1035 "white" |
29555
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1036 "MistyRose" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1037 "misty rose" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1038 "LavenderBlush" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1039 "lavender blush" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1040 "lavender" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1041 "AliceBlue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1042 "alice blue" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1043 "azure" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1044 "MintCream" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1045 "mint cream" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1046 "honeydew" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1047 "seashell" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1048 "LemonChiffon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1049 "lemon chiffon" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1050 "ivory" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1051 "cornsilk" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1052 "moccasin" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1053 "NavajoWhite" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1054 "navajo white" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1055 "PeachPuff" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1056 "peach puff" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1057 "bisque" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1058 "BlanchedAlmond" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1059 "blanched almond" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1060 "PapayaWhip" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1061 "papaya whip" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1062 "AntiqueWhite" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1063 "antique white" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1064 "linen" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1065 "OldLace" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1066 "old lace" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1067 "FloralWhite" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1068 "floral white" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1069 "gainsboro" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1070 "WhiteSmoke" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1071 "white smoke" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1072 "GhostWhite" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1073 "ghost white" |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1074 "snow") |
ec45256eb961
(x-colors): Add colors from recent rgb.txt.
Gerd Moellmann <gerd@gnu.org>
parents:
28217
diff
changeset
|
1075 "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
|
1076 XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp") |
54 | 1077 |
26736
a0674327c167
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
23903
diff
changeset
|
1078 (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
|
1079 "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
|
1080 (or frame (setq frame (selected-frame))) |
54 | 1081 (let ((all-colors x-colors) |
1082 (this-color nil) | |
1083 (defined-colors nil)) | |
1084 (while all-colors | |
1085 (setq this-color (car all-colors) | |
1086 all-colors (cdr all-colors)) | |
27101
a5791b2ee668
(xw-defined-colors): Call color-supported-p,
Eli Zaretskii <eliz@gnu.org>
parents:
26736
diff
changeset
|
1087 (and (color-supported-p this-color frame t) |
54 | 1088 (setq defined-colors (cons this-color defined-colors)))) |
1089 defined-colors)) | |
396 | 1090 |
1091 ;;;; Function keys | |
1092 | |
4313
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1093 (defun iconify-or-deiconify-frame () |
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1094 "Iconify the selected frame, or deiconify if it's currently an icon." |
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1095 (interactive) |
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1096 (if (eq (cdr (assq 'visibility (frame-parameters))) t) |
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1097 (iconify-frame) |
6141
fefa088fc7f9
(iconify-or-deiconify-frame): Don't make invisible before making visible.
Karl Heuer <kwzh@gnu.org>
parents:
6137
diff
changeset
|
1098 (make-frame-visible))) |
4313
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1099 |
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1100 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame |
87472f1eb031
(iconify-or-deiconify-frame): New function. Use it for C-z.
Richard M. Stallman <rms@gnu.org>
parents:
4306
diff
changeset
|
1101 global-map) |
1546 | 1102 |
2145
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1103 ;; Map certain keypad keys into ASCII characters |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1104 ;; that people usually expect. |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1105 (define-key function-key-map [backspace] [127]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1106 (define-key function-key-map [delete] [127]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1107 (define-key function-key-map [tab] [?\t]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1108 (define-key function-key-map [linefeed] [?\n]) |
12970
b5262e218fa8
(function-key-map): Consistently map CLEAR to C-l.
Richard M. Stallman <rms@gnu.org>
parents:
12556
diff
changeset
|
1109 (define-key function-key-map [clear] [?\C-l]) |
b5262e218fa8
(function-key-map): Consistently map CLEAR to C-l.
Richard M. Stallman <rms@gnu.org>
parents:
12556
diff
changeset
|
1110 (define-key function-key-map [return] [?\C-m]) |
2145
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1111 (define-key function-key-map [escape] [?\e]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1112 (define-key function-key-map [M-backspace] [?\M-\d]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1113 (define-key function-key-map [M-delete] [?\M-\d]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1114 (define-key function-key-map [M-tab] [?\M-\t]) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1115 (define-key function-key-map [M-linefeed] [?\M-\n]) |
12970
b5262e218fa8
(function-key-map): Consistently map CLEAR to C-l.
Richard M. Stallman <rms@gnu.org>
parents:
12556
diff
changeset
|
1116 (define-key function-key-map [M-clear] [?\M-\C-l]) |
b5262e218fa8
(function-key-map): Consistently map CLEAR to C-l.
Richard M. Stallman <rms@gnu.org>
parents:
12556
diff
changeset
|
1117 (define-key function-key-map [M-return] [?\M-\C-m]) |
2145
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1118 (define-key function-key-map [M-escape] [?\M-\e]) |
17244
6d46f493d819
(function-key-map): Define iso-lefttab.
Richard M. Stallman <rms@gnu.org>
parents:
17169
diff
changeset
|
1119 (define-key function-key-map [iso-lefttab] [backtab]) |
2145
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1120 |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1121 ;; These tell read-char how to convert |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1122 ;; these special chars to ASCII. |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1123 (put 'backspace 'ascii-character 127) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1124 (put 'delete 'ascii-character 127) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1125 (put 'tab 'ascii-character ?\t) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1126 (put 'linefeed 'ascii-character ?\n) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1127 (put 'clear 'ascii-character 12) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1128 (put 'return 'ascii-character 13) |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
1129 (put 'escape 'ascii-character ?\e) |
5515
920b55d2057b
(vendor-key-syms): Set this variable.
Richard M. Stallman <rms@gnu.org>
parents:
4314
diff
changeset
|
1130 |
11821
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1131 (defun vendor-specific-keysyms (vendor) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1132 "Return the appropriate value of system-key-alist for VENDOR. |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1133 VENDOR is a string containing the name of the X Server's vendor, |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1134 as returned by (x-server-vendor)." |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1135 (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
|
1136 '((65280 . linedel) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1137 (65281 . chardel) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1138 (65282 . copy) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1139 (65283 . cut) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1140 (65284 . paste) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1141 (65285 . move) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1142 (65286 . grow) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1143 (65287 . cmd) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1144 (65288 . shell) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1145 (65289 . leftbar) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1146 (65290 . rightbar) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1147 (65291 . leftbox) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1148 (65292 . rightbox) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1149 (65293 . upbox) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1150 (65294 . downbox) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1151 (65295 . pop) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1152 (65296 . read) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1153 (65297 . edit) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1154 (65298 . save) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1155 (65299 . exit) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1156 (65300 . repeat))) |
11902
fab32f80adf5
(vendor-specific-keysyms): Add second spelling for HP.
Karl Heuer <kwzh@gnu.org>
parents:
11821
diff
changeset
|
1157 ((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
|
1158 (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
|
1159 '(( 168 . mute-acute) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1160 ( 169 . mute-grave) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1161 ( 170 . mute-asciicircum) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1162 ( 171 . mute-diaeresis) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1163 ( 172 . mute-asciitilde) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1164 ( 175 . lira) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1165 ( 190 . guilder) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1166 ( 252 . block) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1167 ( 256 . longminus) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1168 (65388 . reset) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1169 (65389 . system) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1170 (65390 . user) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1171 (65391 . clearline) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1172 (65392 . insertline) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1173 (65393 . deleteline) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1174 (65394 . insertchar) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1175 (65395 . deletechar) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1176 (65396 . backtab) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1177 (65397 . kp-backtab))) |
12057
562d3062b82e
(vendor-specific-keysyms): Recognize "X Consortium".
Karl Heuer <kwzh@gnu.org>
parents:
11902
diff
changeset
|
1178 ((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
|
1179 (string-equal vendor "X Consortium")) |
12556 | 1180 '((392976 . f36) |
1181 (392977 . f37) | |
11821
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1182 (393056 . req) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1183 ;; These are for Sun under X11R6 |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1184 (393072 . props) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1185 (393073 . front) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1186 (393074 . copy) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1187 (393075 . open) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1188 (393076 . paste) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1189 (393077 . cut))) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1190 (t |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1191 ;; 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
|
1192 '((65280 . remove))))) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
1193 |
54 | 1194 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1195 ;;;; Keysyms |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1196 |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1197 (let ((i 160)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1198 (while (< i 256) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1199 (puthash i i x-keysym-table) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1200 (setq i (1- i)))) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1201 |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1202 ;; Table from Kuhn's proposed additions to the `KEYSYM Encoding' |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1203 ;; appendix to the X protocol definition. |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1204 (dolist |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1205 (pair |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1206 '((#x1a1 . ?Ą) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1207 (#x1a2 . ?˘) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1208 (#x1a3 . ?Ł) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1209 (#x1a5 . ?Ľ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1210 (#x1a6 . ?Ś) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1211 (#x1a9 . ?Š) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1212 (#x1aa . ?Ş) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1213 (#x1ab . ?Ť) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1214 (#x1ac . ?Ź) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1215 (#x1ae . ?Ž) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1216 (#x1af . ?Ż) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1217 (#x1b1 . ?ą) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1218 (#x1b2 . ?˛) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1219 (#x1b3 . ?ł) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1220 (#x1b5 . ?ľ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1221 (#x1b6 . ?ś) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1222 (#x1b7 . ?ˇ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1223 (#x1b9 . ?š) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1224 (#x1ba . ?ş) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1225 (#x1bb . ?ť) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1226 (#x1bc . ?ź) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1227 (#x1bd . ?˝) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1228 (#x1be . ?ž) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1229 (#x1bf . ?ż) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1230 (#x1c0 . ?Ŕ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1231 (#x1c3 . ?Ă) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1232 (#x1c5 . ?Ĺ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1233 (#x1c6 . ?Ć) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1234 (#x1c8 . ?Č) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1235 (#x1ca . ?Ę) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1236 (#x1cc . ?Ě) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1237 (#x1cf . ?Ď) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1238 (#x1d0 . ?Đ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1239 (#x1d1 . ?Ń) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1240 (#x1d2 . ?Ň) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1241 (#x1d5 . ?Ő) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1242 (#x1d8 . ?Ř) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1243 (#x1d9 . ?Ů) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1244 (#x1db . ?Ű) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1245 (#x1de . ?Ţ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1246 (#x1e0 . ?ŕ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1247 (#x1e3 . ?ă) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1248 (#x1e5 . ?ĺ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1249 (#x1e6 . ?ć) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1250 (#x1e8 . ?č) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1251 (#x1ea . ?ę) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1252 (#x1ec . ?ě) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1253 (#x1ef . ?ď) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1254 (#x1f0 . ?đ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1255 (#x1f1 . ?ń) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1256 (#x1f2 . ?ň) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1257 (#x1f5 . ?ő) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1258 (#x1f8 . ?ř) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1259 (#x1f9 . ?ů) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1260 (#x1fb . ?ű) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1261 (#x1fe . ?ţ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1262 (#x1ff . ?˙) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1263 (#x2a1 . ?Ħ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1264 (#x2a6 . ?Ĥ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1265 (#x2a9 . ?İ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1266 (#x2ab . ?Ğ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1267 (#x2ac . ?Ĵ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1268 (#x2b1 . ?ħ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1269 (#x2b6 . ?ĥ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1270 (#x2b9 . ?ı) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1271 (#x2bb . ?ğ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1272 (#x2bc . ?ĵ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1273 (#x2c5 . ?Ċ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1274 (#x2c6 . ?Ĉ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1275 (#x2d5 . ?Ġ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1276 (#x2d8 . ?Ĝ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1277 (#x2dd . ?Ŭ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1278 (#x2de . ?Ŝ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1279 (#x2e5 . ?ċ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1280 (#x2e6 . ?ĉ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1281 (#x2f5 . ?ġ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1282 (#x2f8 . ?ĝ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1283 (#x2fd . ?ŭ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1284 (#x2fe . ?ŝ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1285 (#x3a2 . ?ĸ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1286 (#x3a3 . ?Ŗ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1287 (#x3a5 . ?Ĩ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1288 (#x3a6 . ?Ļ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1289 (#x3aa . ?Ē) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1290 (#x3ab . ?Ģ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1291 (#x3ac . ?Ŧ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1292 (#x3b3 . ?ŗ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1293 (#x3b5 . ?ĩ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1294 (#x3b6 . ?ļ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1295 (#x3ba . ?ē) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1296 (#x3bb . ?ģ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1297 (#x3bc . ?ŧ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1298 (#x3bd . ?Ŋ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1299 (#x3bf . ?ŋ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1300 (#x3c0 . ?Ā) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1301 (#x3c7 . ?Į) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1302 (#x3cc . ?Ė) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1303 (#x3cf . ?Ī) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1304 (#x3d1 . ?Ņ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1305 (#x3d2 . ?Ō) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1306 (#x3d3 . ?Ķ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1307 (#x3d9 . ?Ų) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1308 (#x3dd . ?Ũ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1309 (#x3de . ?Ū) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1310 (#x3e0 . ?ā) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1311 (#x3e7 . ?į) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1312 (#x3ec . ?ė) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1313 (#x3ef . ?ī) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1314 (#x3f1 . ?ņ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1315 (#x3f2 . ?ō) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1316 (#x3f3 . ?ķ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1317 (#x3f9 . ?ų) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1318 (#x3fd . ?ũ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1319 (#x3fe . ?ū) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1320 (#x47e . ?‾) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1321 (#x4a1 . ?。) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1322 (#x4a2 . ?\「) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1323 (#x4a3 . ?\」) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1324 (#x4a4 . ?、) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1325 (#x4a5 . ?・) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1326 (#x4a6 . ?ヲ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1327 (#x4a7 . ?ァ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1328 (#x4a8 . ?ィ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1329 (#x4a9 . ?ゥ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1330 (#x4aa . ?ェ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1331 (#x4ab . ?ォ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1332 (#x4ac . ?ャ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1333 (#x4ad . ?ュ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1334 (#x4ae . ?ョ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1335 (#x4af . ?ッ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1336 (#x4b0 . ?ー) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1337 (#x4b1 . ?ア) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1338 (#x4b2 . ?イ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1339 (#x4b3 . ?ウ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1340 (#x4b4 . ?エ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1341 (#x4b5 . ?オ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1342 (#x4b6 . ?カ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1343 (#x4b7 . ?キ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1344 (#x4b8 . ?ク) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1345 (#x4b9 . ?ケ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1346 (#x4ba . ?コ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1347 (#x4bb . ?サ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1348 (#x4bc . ?シ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1349 (#x4bd . ?ス) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1350 (#x4be . ?セ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1351 (#x4bf . ?ソ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1352 (#x4c0 . ?タ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1353 (#x4c1 . ?チ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1354 (#x4c2 . ?ツ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1355 (#x4c3 . ?テ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1356 (#x4c4 . ?ト) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1357 (#x4c5 . ?ナ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1358 (#x4c6 . ?ニ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1359 (#x4c7 . ?ヌ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1360 (#x4c8 . ?ネ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1361 (#x4c9 . ?ノ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1362 (#x4ca . ?ハ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1363 (#x4cb . ?ヒ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1364 (#x4cc . ?フ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1365 (#x4cd . ?ヘ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1366 (#x4ce . ?ホ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1367 (#x4cf . ?マ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1368 (#x4d0 . ?ミ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1369 (#x4d1 . ?ム) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1370 (#x4d2 . ?メ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1371 (#x4d3 . ?モ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1372 (#x4d4 . ?ヤ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1373 (#x4d5 . ?ユ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1374 (#x4d6 . ?ヨ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1375 (#x4d7 . ?ラ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1376 (#x4d8 . ?リ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1377 (#x4d9 . ?ル) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1378 (#x4da . ?レ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1379 (#x4db . ?ロ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1380 (#x4dc . ?ワ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1381 (#x4dd . ?ン) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1382 (#x4de . ?゛) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1383 (#x4df . ?゜) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1384 (#x5ac . ?،) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1385 (#x5bb . ?؛) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1386 (#x5bf . ?؟) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1387 (#x5c1 . ?ء) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1388 (#x5c2 . ?آ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1389 (#x5c3 . ?أ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1390 (#x5c4 . ?ؤ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1391 (#x5c5 . ?إ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1392 (#x5c6 . ?ئ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1393 (#x5c7 . ?ا) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1394 (#x5c8 . ?ب) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1395 (#x5c9 . ?ة) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1396 (#x5ca . ?ت) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1397 (#x5cb . ?ث) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1398 (#x5cc . ?ج) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1399 (#x5cd . ?ح) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1400 (#x5ce . ?خ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1401 (#x5cf . ?د) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1402 (#x5d0 . ?ذ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1403 (#x5d1 . ?ر) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1404 (#x5d2 . ?ز) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1405 (#x5d3 . ?س) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1406 (#x5d4 . ?ش) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1407 (#x5d5 . ?ص) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1408 (#x5d6 . ?ض) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1409 (#x5d7 . ?ط) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1410 (#x5d8 . ?ظ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1411 (#x5d9 . ?ع) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1412 (#x5da . ?غ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1413 (#x5e0 . ?ـ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1414 (#x5e1 . ?ف) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1415 (#x5e2 . ?ق) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1416 (#x5e3 . ?ك) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1417 (#x5e4 . ?ل) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1418 (#x5e5 . ?م) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1419 (#x5e6 . ?ن) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1420 (#x5e7 . ?ه) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1421 (#x5e8 . ?و) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1422 (#x5e9 . ?ى) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1423 (#x5ea . ?ي) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1424 (#x5eb . ?ً) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1425 (#x5ec . ?ٌ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1426 (#x5ed . ?ٍ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1427 (#x5ee . ?َ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1428 (#x5ef . ?ُ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1429 (#x5f0 . ?ِ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1430 (#x5f1 . ?ّ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1431 (#x5f2 . ?ْ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1432 (#x6a1 . ?ђ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1433 (#x6a2 . ?ѓ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1434 (#x6a3 . ?ё) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1435 (#x6a4 . ?є) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1436 (#x6a5 . ?ѕ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1437 (#x6a6 . ?і) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1438 (#x6a7 . ?ї) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1439 (#x6a8 . ?ј) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1440 (#x6a9 . ?љ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1441 (#x6aa . ?њ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1442 (#x6ab . ?ћ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1443 (#x6ac . ?ќ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1444 (#x6ae . ?ў) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1445 (#x6af . ?џ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1446 (#x6b0 . ?№) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1447 (#x6b1 . ?Ђ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1448 (#x6b2 . ?Ѓ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1449 (#x6b3 . ?Ё) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1450 (#x6b4 . ?Є) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1451 (#x6b5 . ?Ѕ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1452 (#x6b6 . ?І) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1453 (#x6b7 . ?Ї) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1454 (#x6b8 . ?Ј) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1455 (#x6b9 . ?Љ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1456 (#x6ba . ?Њ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1457 (#x6bb . ?Ћ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1458 (#x6bc . ?Ќ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1459 (#x6be . ?Ў) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1460 (#x6bf . ?Џ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1461 (#x6c0 . ?ю) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1462 (#x6c1 . ?а) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1463 (#x6c2 . ?б) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1464 (#x6c3 . ?ц) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1465 (#x6c4 . ?д) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1466 (#x6c5 . ?е) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1467 (#x6c6 . ?ф) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1468 (#x6c7 . ?г) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1469 (#x6c8 . ?х) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1470 (#x6c9 . ?и) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1471 (#x6ca . ?й) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1472 (#x6cb . ?к) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1473 (#x6cc . ?л) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1474 (#x6cd . ?м) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1475 (#x6ce . ?н) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1476 (#x6cf . ?о) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1477 (#x6d0 . ?п) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1478 (#x6d1 . ?я) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1479 (#x6d2 . ?р) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1480 (#x6d3 . ?с) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1481 (#x6d4 . ?т) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1482 (#x6d5 . ?у) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1483 (#x6d6 . ?ж) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1484 (#x6d7 . ?в) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1485 (#x6d8 . ?ь) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1486 (#x6d9 . ?ы) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1487 (#x6da . ?з) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1488 (#x6db . ?ш) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1489 (#x6dc . ?э) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1490 (#x6dd . ?щ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1491 (#x6de . ?ч) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1492 (#x6df . ?ъ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1493 (#x6e0 . ?Ю) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1494 (#x6e1 . ?А) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1495 (#x6e2 . ?Б) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1496 (#x6e3 . ?Ц) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1497 (#x6e4 . ?Д) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1498 (#x6e5 . ?Е) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1499 (#x6e6 . ?Ф) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1500 (#x6e7 . ?Г) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1501 (#x6e8 . ?Х) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1502 (#x6e9 . ?И) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1503 (#x6ea . ?Й) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1504 (#x6eb . ?К) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1505 (#x6ec . ?Л) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1506 (#x6ed . ?М) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1507 (#x6ee . ?Н) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1508 (#x6ef . ?О) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1509 (#x6f0 . ?П) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1510 (#x6f1 . ?Я) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1511 (#x6f2 . ?Р) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1512 (#x6f3 . ?С) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1513 (#x6f4 . ?Т) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1514 (#x6f5 . ?У) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1515 (#x6f6 . ?Ж) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1516 (#x6f7 . ?В) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1517 (#x6f8 . ?Ь) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1518 (#x6f9 . ?Ы) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1519 (#x6fa . ?З) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1520 (#x6fb . ?Ш) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1521 (#x6fc . ?Э) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1522 (#x6fd . ?Щ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1523 (#x6fe . ?Ч) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1524 (#x6ff . ?Ъ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1525 (#x7a1 . ?Ά) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1526 (#x7a2 . ?Έ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1527 (#x7a3 . ?Ή) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1528 (#x7a4 . ?Ί) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1529 (#x7a5 . ?Ϊ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1530 (#x7a7 . ?Ό) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1531 (#x7a8 . ?Ύ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1532 (#x7a9 . ?Ϋ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1533 (#x7ab . ?Ώ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1534 (#x7ae . ?΅) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1535 (#x7af . ?―) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1536 (#x7b1 . ?ά) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1537 (#x7b2 . ?έ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1538 (#x7b3 . ?ή) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1539 (#x7b4 . ?ί) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1540 (#x7b5 . ?ϊ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1541 (#x7b6 . ?ΐ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1542 (#x7b7 . ?ό) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1543 (#x7b8 . ?ύ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1544 (#x7b9 . ?ϋ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1545 (#x7ba . ?ΰ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1546 (#x7bb . ?ώ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1547 (#x7c1 . ?Α) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1548 (#x7c2 . ?Β) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1549 (#x7c3 . ?Γ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1550 (#x7c4 . ?Δ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1551 (#x7c5 . ?Ε) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1552 (#x7c6 . ?Ζ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1553 (#x7c7 . ?Η) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1554 (#x7c8 . ?Θ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1555 (#x7c9 . ?Ι) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1556 (#x7ca . ?Κ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1557 (#x7cb . ?Λ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1558 (#x7cc . ?Μ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1559 (#x7cd . ?Ν) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1560 (#x7ce . ?Ξ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1561 (#x7cf . ?Ο) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1562 (#x7d0 . ?Π) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1563 (#x7d1 . ?Ρ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1564 (#x7d2 . ?Σ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1565 (#x7d4 . ?Τ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1566 (#x7d5 . ?Υ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1567 (#x7d6 . ?Φ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1568 (#x7d7 . ?Χ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1569 (#x7d8 . ?Ψ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1570 (#x7d9 . ?Ω) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1571 (#x7e1 . ?α) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1572 (#x7e2 . ?β) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1573 (#x7e3 . ?γ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1574 (#x7e4 . ?δ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1575 (#x7e5 . ?ε) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1576 (#x7e6 . ?ζ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1577 (#x7e7 . ?η) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1578 (#x7e8 . ?θ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1579 (#x7e9 . ?ι) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1580 (#x7ea . ?κ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1581 (#x7eb . ?λ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1582 (#x7ec . ?μ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1583 (#x7ed . ?ν) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1584 (#x7ee . ?ξ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1585 (#x7ef . ?ο) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1586 (#x7f0 . ?π) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1587 (#x7f1 . ?ρ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1588 (#x7f2 . ?σ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1589 (#x7f3 . ?ς) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1590 (#x7f4 . ?τ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1591 (#x7f5 . ?υ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1592 (#x7f6 . ?φ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1593 (#x7f7 . ?χ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1594 (#x7f8 . ?ψ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1595 (#x7f9 . ?ω) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1596 (#x8a1 . ?⎷) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1597 (#x8a2 . ?┌) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1598 (#x8a3 . ?─) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1599 (#x8a4 . ?⌠) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1600 (#x8a5 . ?⌡) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1601 (#x8a6 . ?│) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1602 (#x8a7 . ?⎡) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1603 (#x8a8 . ?⎣) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1604 (#x8a9 . ?⎤) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1605 (#x8aa . ?⎦) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1606 (#x8ab . ?⎛) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1607 (#x8ac . ?⎝) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1608 (#x8ad . ?⎞) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1609 (#x8ae . ?⎠) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1610 (#x8af . ?⎨) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1611 (#x8b0 . ?⎬) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1612 (#x8bc . ?≤) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1613 (#x8bd . ?≠) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1614 (#x8be . ?≥) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1615 (#x8bf . ?∫) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1616 (#x8c0 . ?∴) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1617 (#x8c1 . ?∝) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1618 (#x8c2 . ?∞) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1619 (#x8c5 . ?∇) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1620 (#x8c8 . ?∼) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1621 (#x8c9 . ?≃) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1622 (#x8cd . ?⇔) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1623 (#x8ce . ?⇒) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1624 (#x8cf . ?≡) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1625 (#x8d6 . ?√) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1626 (#x8da . ?⊂) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1627 (#x8db . ?⊃) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1628 (#x8dc . ?∩) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1629 (#x8dd . ?∪) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1630 (#x8de . ?∧) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1631 (#x8df . ?∨) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1632 (#x8ef . ?∂) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1633 (#x8f6 . ?ƒ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1634 (#x8fb . ?←) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1635 (#x8fc . ?↑) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1636 (#x8fd . ?→) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1637 (#x8fe . ?↓) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1638 (#x9e0 . ?◆) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1639 (#x9e1 . ?▒) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1640 (#x9e2 . ?␉) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1641 (#x9e3 . ?␌) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1642 (#x9e4 . ?␍) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1643 (#x9e5 . ?␊) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1644 (#x9e8 . ?) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1645 (#x9e9 . ?␋) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1646 (#x9ea . ?┘) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1647 (#x9eb . ?┐) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1648 (#x9ec . ?┌) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1649 (#x9ed . ?└) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1650 (#x9ee . ?┼) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1651 (#x9ef . ?⎺) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1652 (#x9f0 . ?⎻) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1653 (#x9f1 . ?─) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1654 (#x9f2 . ?⎼) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1655 (#x9f3 . ?⎽) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1656 (#x9f4 . ?├) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1657 (#x9f5 . ?┤) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1658 (#x9f6 . ?┴) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1659 (#x9f7 . ?┬) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1660 (#x9f8 . ?│) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1661 (#xaa1 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1662 (#xaa2 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1663 (#xaa3 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1664 (#xaa4 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1665 (#xaa5 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1666 (#xaa6 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1667 (#xaa7 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1668 (#xaa8 . ? ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1669 (#xaa9 . ?—) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1670 (#xaaa . ?–) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1671 (#xaae . ?…) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1672 (#xaaf . ?‥) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1673 (#xab0 . ?⅓) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1674 (#xab1 . ?⅔) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1675 (#xab2 . ?⅕) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1676 (#xab3 . ?⅖) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1677 (#xab4 . ?⅗) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1678 (#xab5 . ?⅘) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1679 (#xab6 . ?⅙) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1680 (#xab7 . ?⅚) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1681 (#xab8 . ?℅) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1682 (#xabb . ?‒) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1683 (#xabc . ?〈) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1684 (#xabe . ?〉) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1685 (#xac3 . ?⅛) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1686 (#xac4 . ?⅜) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1687 (#xac5 . ?⅝) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1688 (#xac6 . ?⅞) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1689 (#xac9 . ?™) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1690 (#xaca . ?☓) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1691 (#xacc . ?◁) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1692 (#xacd . ?▷) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1693 (#xace . ?○) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1694 (#xacf . ?▯) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1695 (#xad0 . ?‘) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1696 (#xad1 . ?’) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1697 (#xad2 . ?“) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1698 (#xad3 . ?”) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1699 (#xad4 . ?℞) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1700 (#xad6 . ?′) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1701 (#xad7 . ?″) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1702 (#xad9 . ?✝) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1703 (#xadb . ?▬) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1704 (#xadc . ?◀) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1705 (#xadd . ?▶) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1706 (#xade . ?●) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1707 (#xadf . ?▮) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1708 (#xae0 . ?◦) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1709 (#xae1 . ?▫) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1710 (#xae2 . ?▭) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1711 (#xae3 . ?△) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1712 (#xae4 . ?▽) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1713 (#xae5 . ?☆) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1714 (#xae6 . ?•) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1715 (#xae7 . ?▪) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1716 (#xae8 . ?▲) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1717 (#xae9 . ?▼) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1718 (#xaea . ?☜) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1719 (#xaeb . ?☞) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1720 (#xaec . ?♣) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1721 (#xaed . ?♦) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1722 (#xaee . ?♥) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1723 (#xaf0 . ?✠) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1724 (#xaf1 . ?†) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1725 (#xaf2 . ?‡) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1726 (#xaf3 . ?✓) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1727 (#xaf4 . ?✗) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1728 (#xaf5 . ?♯) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1729 (#xaf6 . ?♭) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1730 (#xaf7 . ?♂) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1731 (#xaf8 . ?♀) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1732 (#xaf9 . ?☎) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1733 (#xafa . ?⌕) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1734 (#xafb . ?℗) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1735 (#xafc . ?‸) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1736 (#xafd . ?‚) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1737 (#xafe . ?„) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1738 (#xba3 . ?<) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1739 (#xba6 . ?>) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1740 (#xba8 . ?∨) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1741 (#xba9 . ?∧) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1742 (#xbc0 . ?¯) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1743 (#xbc2 . ?⊥) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1744 (#xbc3 . ?∩) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1745 (#xbc4 . ?⌊) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1746 (#xbc6 . ?_) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1747 (#xbca . ?∘) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1748 (#xbcc . ?⎕) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1749 (#xbce . ?⊤) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1750 (#xbcf . ?○) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1751 (#xbd3 . ?⌈) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1752 (#xbd6 . ?∪) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1753 (#xbd8 . ?⊃) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1754 (#xbda . ?⊂) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1755 (#xbdc . ?⊢) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1756 (#xbfc . ?⊣) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1757 (#xcdf . ?‗) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1758 (#xce0 . ?א) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1759 (#xce1 . ?ב) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1760 (#xce2 . ?ג) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1761 (#xce3 . ?ד) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1762 (#xce4 . ?ה) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1763 (#xce5 . ?ו) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1764 (#xce6 . ?ז) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1765 (#xce7 . ?ח) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1766 (#xce8 . ?ט) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1767 (#xce9 . ?י) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1768 (#xcea . ?ך) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1769 (#xceb . ?כ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1770 (#xcec . ?ל) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1771 (#xced . ?ם) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1772 (#xcee . ?מ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1773 (#xcef . ?ן) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1774 (#xcf0 . ?נ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1775 (#xcf1 . ?ס) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1776 (#xcf2 . ?ע) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1777 (#xcf3 . ?ף) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1778 (#xcf4 . ?פ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1779 (#xcf5 . ?ץ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1780 (#xcf6 . ?צ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1781 (#xcf7 . ?ק) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1782 (#xcf8 . ?ר) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1783 (#xcf9 . ?ש) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1784 (#xcfa . ?ת) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1785 (#xda1 . ?ก) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1786 (#xda2 . ?ข) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1787 (#xda3 . ?ฃ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1788 (#xda4 . ?ค) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1789 (#xda5 . ?ฅ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1790 (#xda6 . ?ฆ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1791 (#xda7 . ?ง) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1792 (#xda8 . ?จ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1793 (#xda9 . ?ฉ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1794 (#xdaa . ?ช) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1795 (#xdab . ?ซ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1796 (#xdac . ?ฌ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1797 (#xdad . ?ญ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1798 (#xdae . ?ฎ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1799 (#xdaf . ?ฏ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1800 (#xdb0 . ?ฐ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1801 (#xdb1 . ?ฑ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1802 (#xdb2 . ?ฒ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1803 (#xdb3 . ?ณ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1804 (#xdb4 . ?ด) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1805 (#xdb5 . ?ต) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1806 (#xdb6 . ?ถ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1807 (#xdb7 . ?ท) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1808 (#xdb8 . ?ธ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1809 (#xdb9 . ?น) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1810 (#xdba . ?บ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1811 (#xdbb . ?ป) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1812 (#xdbc . ?ผ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1813 (#xdbd . ?ฝ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1814 (#xdbe . ?พ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1815 (#xdbf . ?ฟ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1816 (#xdc0 . ?ภ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1817 (#xdc1 . ?ม) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1818 (#xdc2 . ?ย) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1819 (#xdc3 . ?ร) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1820 (#xdc4 . ?ฤ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1821 (#xdc5 . ?ล) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1822 (#xdc6 . ?ฦ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1823 (#xdc7 . ?ว) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1824 (#xdc8 . ?ศ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1825 (#xdc9 . ?ษ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1826 (#xdca . ?ส) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1827 (#xdcb . ?ห) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1828 (#xdcc . ?ฬ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1829 (#xdcd . ?อ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1830 (#xdce . ?ฮ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1831 (#xdcf . ?ฯ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1832 (#xdd0 . ?ะ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1833 (#xdd1 . ?ั) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1834 (#xdd2 . ?า) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1835 (#xdd3 . ?ำ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1836 (#xdd4 . ?ิ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1837 (#xdd5 . ?ี) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1838 (#xdd6 . ?ึ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1839 (#xdd7 . ?ื) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1840 (#xdd8 . ?ุ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1841 (#xdd9 . ?ู) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1842 (#xdda . ?ฺ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1843 (#xddf . ?฿) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1844 (#xde0 . ?เ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1845 (#xde1 . ?แ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1846 (#xde2 . ?โ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1847 (#xde3 . ?ใ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1848 (#xde4 . ?ไ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1849 (#xde5 . ?ๅ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1850 (#xde6 . ?ๆ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1851 (#xde7 . ?็) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1852 (#xde8 . ?่) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1853 (#xde9 . ?้) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1854 (#xdea . ?๊) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1855 (#xdeb . ?๋) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1856 (#xdec . ?์) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1857 (#xded . ?ํ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1858 (#xdf0 . ?๐) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1859 (#xdf1 . ?๑) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1860 (#xdf2 . ?๒) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1861 (#xdf3 . ?๓) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1862 (#xdf4 . ?๔) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1863 (#xdf5 . ?๕) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1864 (#xdf6 . ?๖) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1865 (#xdf7 . ?๗) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1866 (#xdf8 . ?๘) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1867 (#xdf9 . ?๙) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1868 (#xea1 . ?ㄱ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1869 (#xea2 . ?ㄲ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1870 (#xea3 . ?ㄳ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1871 (#xea4 . ?ㄴ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1872 (#xea5 . ?ㄵ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1873 (#xea6 . ?ㄶ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1874 (#xea7 . ?ㄷ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1875 (#xea8 . ?ㄸ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1876 (#xea9 . ?ㄹ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1877 (#xeaa . ?ㄺ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1878 (#xeab . ?ㄻ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1879 (#xeac . ?ㄼ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1880 (#xead . ?ㄽ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1881 (#xeae . ?ㄾ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1882 (#xeaf . ?ㄿ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1883 (#xeb0 . ?ㅀ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1884 (#xeb1 . ?ㅁ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1885 (#xeb2 . ?ㅂ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1886 (#xeb3 . ?ㅃ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1887 (#xeb4 . ?ㅄ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1888 (#xeb5 . ?ㅅ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1889 (#xeb6 . ?ㅆ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1890 (#xeb7 . ?ㅇ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1891 (#xeb8 . ?ㅈ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1892 (#xeb9 . ?ㅉ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1893 (#xeba . ?ㅊ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1894 (#xebb . ?ㅋ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1895 (#xebc . ?ㅌ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1896 (#xebd . ?ㅍ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1897 (#xebe . ?ㅎ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1898 (#xebf . ?ㅏ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1899 (#xec0 . ?ㅐ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1900 (#xec1 . ?ㅑ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1901 (#xec2 . ?ㅒ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1902 (#xec3 . ?ㅓ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1903 (#xec4 . ?ㅔ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1904 (#xec5 . ?ㅕ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1905 (#xec6 . ?ㅖ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1906 (#xec7 . ?ㅗ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1907 (#xec8 . ?ㅘ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1908 (#xec9 . ?ㅙ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1909 (#xeca . ?ㅚ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1910 (#xecb . ?ㅛ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1911 (#xecc . ?ㅜ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1912 (#xecd . ?ㅝ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1913 (#xece . ?ㅞ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1914 (#xecf . ?ㅟ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1915 (#xed0 . ?ㅠ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1916 (#xed1 . ?ㅡ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1917 (#xed2 . ?ㅢ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1918 (#xed3 . ?ㅣ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1919 (#xed4 . ?ᆨ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1920 (#xed5 . ?ᆩ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1921 (#xed6 . ?ᆪ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1922 (#xed7 . ?ᆫ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1923 (#xed8 . ?ᆬ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1924 (#xed9 . ?ᆭ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1925 (#xeda . ?ᆮ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1926 (#xedb . ?ᆯ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1927 (#xedc . ?ᆰ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1928 (#xedd . ?ᆱ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1929 (#xede . ?ᆲ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1930 (#xedf . ?ᆳ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1931 (#xee0 . ?ᆴ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1932 (#xee1 . ?ᆵ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1933 (#xee2 . ?ᆶ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1934 (#xee3 . ?ᆷ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1935 (#xee4 . ?ᆸ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1936 (#xee5 . ?ᆹ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1937 (#xee6 . ?ᆺ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1938 (#xee7 . ?ᆻ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1939 (#xee8 . ?ᆼ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1940 (#xee9 . ?ᆽ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1941 (#xeea . ?ᆾ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1942 (#xeeb . ?ᆿ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1943 (#xeec . ?ᇀ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1944 (#xeed . ?ᇁ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1945 (#xeee . ?ᇂ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1946 (#xeef . ?ㅭ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1947 (#xef0 . ?ㅱ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1948 (#xef1 . ?ㅸ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1949 (#xef2 . ?ㅿ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1950 (#xef3 . ?ㆁ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1951 (#xef4 . ?ㆄ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1952 (#xef5 . ?ㆆ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1953 (#xef6 . ?ㆍ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1954 (#xef7 . ?ㆎ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1955 (#xef8 . ?ᇫ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1956 (#xef9 . ?ᇰ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1957 (#xefa . ?ᇹ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1958 (#xeff . ?₩) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1959 (#x13bc . ?Œ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1960 (#x13bd . ?œ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1961 (#x13be . ?Ÿ) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1962 (#x20a0 . ?₠) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1963 (#x20a1 . ?₡) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1964 (#x20a2 . ?₢) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1965 (#x20a3 . ?₣) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1966 (#x20a4 . ?₤) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1967 (#x20a5 . ?₥) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1968 (#x20a6 . ?₦) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1969 (#x20a7 . ?₧) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1970 (#x20a8 . ?₨) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1971 (#x20aa . ?₪) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1972 (#x20ab . ?₫) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1973 (#x20ac . ?€))) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1974 (puthash (car pair) (cdr pair) x-keysym-table)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1975 |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1976 ;; The following keysym codes for graphics are listed in the document |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1977 ;; as not having unicodes available: |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1978 |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1979 ;; #x08b1 TOP LEFT SUMMATION Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1980 ;; #x08b2 BOTTOM LEFT SUMMATION Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1981 ;; #x08b3 TOP VERTICAL SUMMATION CONNECTOR Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1982 ;; #x08b4 BOTTOM VERTICAL SUMMATION CONNECTOR Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1983 ;; #x08b5 TOP RIGHT SUMMATION Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1984 ;; #x08b6 BOTTOM RIGHT SUMMATION Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1985 ;; #x08b7 RIGHT MIDDLE SUMMATION Technical |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1986 ;; #x0aac SIGNIFICANT BLANK SYMBOL Publish |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1987 ;; #x0abd DECIMAL POINT Publish |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1988 ;; #x0abf MARKER Publish |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1989 ;; #x0acb TRADEMARK SIGN IN CIRCLE Publish |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1990 ;; #x0ada HEXAGRAM Publish |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1991 ;; #x0aff CURSOR Publish |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1992 ;; #x0dde THAI MAIHANAKAT Thai |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1993 |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
1994 |
1546 | 1995 ;;;; Selections and cut buffers |
707 | 1996 |
727 | 1997 ;;; We keep track of the last text selected here, so we can check the |
1998 ;;; current selection against it, and avoid passing back our own text | |
1999 ;;; from x-cut-buffer-or-selection-value. | |
2000 (defvar x-last-selected-text nil) | |
2001 | |
4273
79dc5c3370f8
(x-select-text): Never set the CLIPBOARD selection.
Richard M. Stallman <rms@gnu.org>
parents:
4246
diff
changeset
|
2002 ;;; It is said that overlarge strings are slow to put into the cut buffer. |
4306
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
2003 ;;; Note this value is overridden below. |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
2004 (defvar x-cut-buffer-max 20000 |
4273
79dc5c3370f8
(x-select-text): Never set the CLIPBOARD selection.
Richard M. Stallman <rms@gnu.org>
parents:
4246
diff
changeset
|
2005 "Max number of characters to put in 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
|
2006 |
33917
8fdc1e5e72f3
(x-select-enable-clipboard): Customize (per lispref).
Dave Love <fx@gnu.org>
parents:
29555
diff
changeset
|
2007 (defcustom x-select-enable-clipboard nil |
6698
b107e54218fe
(x-select-enable-clipboard): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6399
diff
changeset
|
2008 "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
|
2009 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
|
2010 :type 'boolean |
8fdc1e5e72f3
(x-select-enable-clipboard): Customize (per lispref).
Dave Love <fx@gnu.org>
parents:
29555
diff
changeset
|
2011 :group 'killing) |
6698
b107e54218fe
(x-select-enable-clipboard): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6399
diff
changeset
|
2012 |
4273
79dc5c3370f8
(x-select-text): Never set the CLIPBOARD selection.
Richard M. Stallman <rms@gnu.org>
parents:
4246
diff
changeset
|
2013 ;;; Make TEXT, a string, the primary X selection. |
707 | 2014 ;;; Also, set the value of X cut buffer 0, for backward compatibility |
1817
5c2bdeb13f68
x-selection-value has been renamed to x-selection.
Jim Blandy <jimb@redhat.com>
parents:
1772
diff
changeset
|
2015 ;;; with older X applications. |
39400
e69aa66ec7cc
Update Stephen Gildea's mail address.
Eli Zaretskii <eliz@gnu.org>
parents:
36582
diff
changeset
|
2016 ;;; gildea@stop.mail-abuse.org says it's not desirable to put kills |
4273
79dc5c3370f8
(x-select-text): Never set the CLIPBOARD selection.
Richard M. Stallman <rms@gnu.org>
parents:
4246
diff
changeset
|
2017 ;;; in the clipboard. |
3036
98f500ca5593
(x-select-text): New arg PUSH.
Richard M. Stallman <rms@gnu.org>
parents:
2808
diff
changeset
|
2018 (defun x-select-text (text &optional push) |
4236
8e14db210975
(x-select-text): Limit size of text sent to cut buffer.
Richard M. Stallman <rms@gnu.org>
parents:
4132
diff
changeset
|
2019 ;; 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
|
2020 ;; It becomes slow, and if really big it causes errors. |
8e14db210975
(x-select-text): Limit size of text sent to cut buffer.
Richard M. Stallman <rms@gnu.org>
parents:
4132
diff
changeset
|
2021 (if (< (length text) x-cut-buffer-max) |
4273
79dc5c3370f8
(x-select-text): Never set the CLIPBOARD selection.
Richard M. Stallman <rms@gnu.org>
parents:
4246
diff
changeset
|
2022 (x-set-cut-buffer text push) |
4246
af9d2ade78ed
(x-select-text): Always set the cut buffer,
Richard M. Stallman <rms@gnu.org>
parents:
4236
diff
changeset
|
2023 (x-set-cut-buffer "" push)) |
2366
ed9b74c46fb9
* x-win.el: Update copyright to 1993.
Jim Blandy <jimb@redhat.com>
parents:
2157
diff
changeset
|
2024 (x-set-selection 'PRIMARY text) |
6698
b107e54218fe
(x-select-enable-clipboard): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6399
diff
changeset
|
2025 (if x-select-enable-clipboard |
b107e54218fe
(x-select-enable-clipboard): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6399
diff
changeset
|
2026 (x-set-selection 'CLIPBOARD text)) |
727 | 2027 (setq x-last-selected-text text)) |
643 | 2028 |
6399
96ec63c4a347
(x-cut-buffer-or-selection-value): Check for error from x-get-selection.
Karl Heuer <kwzh@gnu.org>
parents:
6319
diff
changeset
|
2029 ;;; Return the value of the current X selection. |
96ec63c4a347
(x-cut-buffer-or-selection-value): Check for error from x-get-selection.
Karl Heuer <kwzh@gnu.org>
parents:
6319
diff
changeset
|
2030 ;;; Consult the selection, then the cut buffer. Treat empty strings |
96ec63c4a347
(x-cut-buffer-or-selection-value): Check for error from x-get-selection.
Karl Heuer <kwzh@gnu.org>
parents:
6319
diff
changeset
|
2031 ;;; as if they were unset. |
17670 | 2032 ;;; If this function is called twice and finds the same text, |
2033 ;;; it returns nil the second time. This is so that a single | |
2034 ;;; selection won't be added to the kill ring over and over. | |
707 | 2035 (defun x-cut-buffer-or-selection-value () |
1266 | 2036 (let (text) |
19112
3940bb7f5515
(x-cut-buffer-or-selection-value): Try both
Richard M. Stallman <rms@gnu.org>
parents:
19085
diff
changeset
|
2037 (when x-select-enable-clipboard |
19178
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2038 (if (null text) |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2039 (condition-case c |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2040 (setq text (x-get-selection 'CLIPBOARD 'COMPOUND_TEXT)) |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2041 (error nil))) |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2042 (if (null text) |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2043 (condition-case c |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2044 (setq text (x-get-selection 'CLIPBOARD 'STRING)) |
fa3161c7360b
(x-cut-buffer-or-selection-value): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
19112
diff
changeset
|
2045 (error nil))) |
19112
3940bb7f5515
(x-cut-buffer-or-selection-value): Try both
Richard M. Stallman <rms@gnu.org>
parents:
19085
diff
changeset
|
2046 (if (string= text "") (setq text nil))) |
3940bb7f5515
(x-cut-buffer-or-selection-value): Try both
Richard M. Stallman <rms@gnu.org>
parents:
19085
diff
changeset
|
2047 |
23903
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2048 ;; Don't die if x-get-selection signals an error. |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2049 (if (null text) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2050 (condition-case c |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2051 (setq text (x-get-selection 'PRIMARY 'COMPOUND_TEXT)) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2052 (error nil))) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2053 (if (null text) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2054 (condition-case c |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2055 (setq text (x-get-selection 'PRIMARY 'STRING)) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2056 (error nil))) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2057 (if (string= text "") (setq text nil)) |
7d1efca4eadc
(x-cut-buffer-or-selection-value):
Karl Heuer <kwzh@gnu.org>
parents:
23686
diff
changeset
|
2058 |
4306
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
2059 (or text (setq text (x-get-cut-buffer 0))) |
1266 | 2060 (if (string= text "") (setq text nil)) |
2061 | |
2062 (cond | |
2063 ((not text) nil) | |
2064 ((eq text x-last-selected-text) nil) | |
2065 ((string= text x-last-selected-text) | |
2066 ;; Record the newer string, so subsequent calls can use the `eq' test. | |
2067 (setq x-last-selected-text text) | |
2068 nil) | |
2069 (t | |
2070 (setq x-last-selected-text text))))) | |
707 | 2071 |
1546 | 2072 |
2073 ;;; Do the actual X Windows setup here; the above code just defines | |
2074 ;;; functions and variables that we use now. | |
2075 | |
2076 (setq command-line-args (x-handle-args command-line-args)) | |
4132
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2077 |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2078 ;;; Make sure we have a valid resource name. |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2079 (or (stringp x-resource-name) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2080 (let (i) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2081 (setq x-resource-name (invocation-name)) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2082 |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2083 ;; Change any . or * characters in x-resource-name to hyphens, |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2084 ;; so as not to choke when we use it in X resource queries. |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2085 (while (setq i (string-match "[.*]" x-resource-name)) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2086 (aset x-resource-name i ?-)))) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2087 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2088 (x-open-connection (or x-display-name |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2089 (setq x-display-name (getenv "DISPLAY"))) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2090 x-command-line-resources |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2091 ;; Exit Emacs with fatal error if this fails. |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2092 t) |
1546 | 2093 |
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
|
2094 (setq frame-creation-function 'x-create-frame-with-faces) |
2145
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
2095 |
4306
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
2096 (setq x-cut-buffer-max (min (- (/ (x-server-max-request-size) 2) 100) |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
2097 x-cut-buffer-max)) |
2e51ffb537a8
(x-handle-iconic): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4280
diff
changeset
|
2098 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2099 ;; Create the standard fontset. |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2100 (create-fontset-from-fontset-spec standard-fontset-spec t) |
17014
828cf55629fc
Require fontset. Create fontsets from
Karl Heuer <kwzh@gnu.org>
parents:
16835
diff
changeset
|
2101 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2102 ;; Create fontset specified in X resources "Fontset-N" (N is 0, 1, ...). |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2103 (create-fontset-from-x-resource) |
17014
828cf55629fc
Require fontset. Create fontsets from
Karl Heuer <kwzh@gnu.org>
parents:
16835
diff
changeset
|
2104 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2105 ;; Try to create a fontset from a font specification which comes |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2106 ;; from initial-frame-alist, default-frame-alist, or X resource. |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2107 ;; A font specification in command line argument (i.e. -fn XXXX) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2108 ;; should be already in default-frame-alist as a `font' |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2109 ;; parameter. However, any font specifications in site-start |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2110 ;; library, user's init file (.emacs), and default.el are not |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2111 ;; yet handled here. |
17014
828cf55629fc
Require fontset. Create fontsets from
Karl Heuer <kwzh@gnu.org>
parents:
16835
diff
changeset
|
2112 |
89240
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2113 (let ((font (or (cdr (assq 'font initial-frame-alist)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2114 (cdr (assq 'font default-frame-alist)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2115 (x-get-resource "font" "Font"))) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2116 xlfd-fields resolved-name) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2117 (if (and font |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2118 (not (query-fontset font)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2119 (setq resolved-name (x-resolve-font-name font)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2120 (setq xlfd-fields (x-decompose-font-name font))) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2121 (if (string= "fontset" (aref xlfd-fields xlfd-regexp-registry-subnum)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2122 (new-fontset font (x-complement-fontset-spec xlfd-fields nil)) |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2123 ;; Create a fontset from FONT. The fontset name is |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2124 ;; generated from FONT. |
51d2baa0181d
Remove some ancient compatibility code. Populate
Dave Love <fx@gnu.org>
parents:
42932
diff
changeset
|
2125 (create-fontset-from-ascii-font font resolved-name "startup")))) |
17014
828cf55629fc
Require fontset. Create fontsets from
Karl Heuer <kwzh@gnu.org>
parents:
16835
diff
changeset
|
2126 |
6792
385261457584
If server is a Sun, call menu-bar-enable-clipboard.
Richard M. Stallman <rms@gnu.org>
parents:
6698
diff
changeset
|
2127 ;; Sun expects the menu bar cut and paste commands to use the clipboard. |
10056
920dae6ba331
(Calling menu-bar-enable-clipboard): Be less selective matching Suns.
Richard M. Stallman <rms@gnu.org>
parents:
10027
diff
changeset
|
2128 ;; This has ,? to match both on Sunos and on Solaris. |
13376
56f14b5a7295
Don't require initial whitespace in vendor name.
Karl Heuer <kwzh@gnu.org>
parents:
12970
diff
changeset
|
2129 (if (string-match "Sun Microsystems,? Inc\\." |
6792
385261457584
If server is a Sun, call menu-bar-enable-clipboard.
Richard M. Stallman <rms@gnu.org>
parents:
6698
diff
changeset
|
2130 (x-server-vendor)) |
385261457584
If server is a Sun, call menu-bar-enable-clipboard.
Richard M. Stallman <rms@gnu.org>
parents:
6698
diff
changeset
|
2131 (menu-bar-enable-clipboard)) |
385261457584
If server is a Sun, call menu-bar-enable-clipboard.
Richard M. Stallman <rms@gnu.org>
parents:
6698
diff
changeset
|
2132 |
3172
2a484b449183
* x-win.el: Check for a geometry resource, and apply it to the
Jim Blandy <jimb@redhat.com>
parents:
3081
diff
changeset
|
2133 ;; Apply a geometry resource to the initial frame. Put it at the end |
2a484b449183
* x-win.el: Check for a geometry resource, and apply it to the
Jim Blandy <jimb@redhat.com>
parents:
3081
diff
changeset
|
2134 ;; of the alist, so that anything specified on the command line takes |
2a484b449183
* x-win.el: Check for a geometry resource, and apply it to the
Jim Blandy <jimb@redhat.com>
parents:
3081
diff
changeset
|
2135 ;; precedence. |
10400
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2136 (let* ((res-geometry (x-get-resource "geometry" "Geometry")) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2137 parsed) |
3172
2a484b449183
* x-win.el: Check for a geometry resource, and apply it to the
Jim Blandy <jimb@redhat.com>
parents:
3081
diff
changeset
|
2138 (if res-geometry |
10400
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2139 (progn |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2140 (setq parsed (x-parse-geometry res-geometry)) |
11821
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
2141 ;; If the resource specifies a position, |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
2142 ;; call the position and size "user-specified". |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
2143 (if (or (assq 'top parsed) (assq 'left parsed)) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
2144 (setq parsed (cons '(user-position . t) |
278e0abb825f
If the geometry resource specifies a position,
Richard M. Stallman <rms@gnu.org>
parents:
11718
diff
changeset
|
2145 (cons '(user-size . t) parsed)))) |
10400
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2146 ;; All geometry parms apply to the initial frame. |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2147 (setq initial-frame-alist (append initial-frame-alist parsed)) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2148 ;; The size parms apply to all frames. |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2149 (if (assq 'height parsed) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2150 (setq default-frame-alist |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2151 (cons (cons 'height (cdr (assq 'height parsed))) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2152 default-frame-alist))) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2153 (if (assq 'width parsed) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2154 (setq default-frame-alist |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2155 (cons (cons 'width (cdr (assq 'width parsed))) |
2743977604b1
Put height and width from geometry parm into default-frame-alist.
Richard M. Stallman <rms@gnu.org>
parents:
10094
diff
changeset
|
2156 default-frame-alist)))))) |
3172
2a484b449183
* x-win.el: Check for a geometry resource, and apply it to the
Jim Blandy <jimb@redhat.com>
parents:
3081
diff
changeset
|
2157 |
3966
dcf86f82f2c8
* term/x-win.el: Check the reverseVideo/ReverseVideo resource,
Jim Blandy <jimb@redhat.com>
parents:
3889
diff
changeset
|
2158 ;; Check the reverseVideo resource. |
4132
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2159 (let ((case-fold-search t)) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2160 (let ((rv (x-get-resource "reverseVideo" "ReverseVideo"))) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2161 (if (and rv |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2162 (string-match "^\\(true\\|yes\\|on\\)$" rv)) |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2163 (setq default-frame-alist |
e0345afdf64e
* term/x-win.el: Include (invocation-name) in the error messages
Jim Blandy <jimb@redhat.com>
parents:
3966
diff
changeset
|
2164 (cons '(reverse . t) default-frame-alist))))) |
3966
dcf86f82f2c8
* term/x-win.el: Check the reverseVideo/ReverseVideo resource,
Jim Blandy <jimb@redhat.com>
parents:
3889
diff
changeset
|
2165 |
3493
b37b09c0b43d
(x-selection-timeout): Set it, using x-get-resource.
Richard M. Stallman <rms@gnu.org>
parents:
3373
diff
changeset
|
2166 ;; Set x-selection-timeout, measured in milliseconds. |
b37b09c0b43d
(x-selection-timeout): Set it, using x-get-resource.
Richard M. Stallman <rms@gnu.org>
parents:
3373
diff
changeset
|
2167 (let ((res-selection-timeout |
b37b09c0b43d
(x-selection-timeout): Set it, using x-get-resource.
Richard M. Stallman <rms@gnu.org>
parents:
3373
diff
changeset
|
2168 (x-get-resource "selectionTimeout" "SelectionTimeout"))) |
4280
fcc66d1d9289
(x-selection-timeout): Use 20000 as default.
Richard M. Stallman <rms@gnu.org>
parents:
4273
diff
changeset
|
2169 (setq x-selection-timeout 20000) |
3493
b37b09c0b43d
(x-selection-timeout): Set it, using x-get-resource.
Richard M. Stallman <rms@gnu.org>
parents:
3373
diff
changeset
|
2170 (if res-selection-timeout |
b37b09c0b43d
(x-selection-timeout): Set it, using x-get-resource.
Richard M. Stallman <rms@gnu.org>
parents:
3373
diff
changeset
|
2171 (setq x-selection-timeout (string-to-number res-selection-timeout)))) |
b37b09c0b43d
(x-selection-timeout): Set it, using x-get-resource.
Richard M. Stallman <rms@gnu.org>
parents:
3373
diff
changeset
|
2172 |
2145
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
2173 (defun x-win-suspend-error () |
aa0b19850348
Cancel previous change, since it discarded
Richard M. Stallman <rms@gnu.org>
parents:
2143
diff
changeset
|
2174 (error "Suspending an emacs running under X makes no sense")) |
2366
ed9b74c46fb9
* x-win.el: Update copyright to 1993.
Jim Blandy <jimb@redhat.com>
parents:
2157
diff
changeset
|
2175 (add-hook 'suspend-hook 'x-win-suspend-error) |
ed9b74c46fb9
* x-win.el: Update copyright to 1993.
Jim Blandy <jimb@redhat.com>
parents:
2157
diff
changeset
|
2176 |
707 | 2177 ;;; Arrange for the kill and yank functions to set and check the clipboard. |
2178 (setq interprogram-cut-function 'x-select-text) | |
2179 (setq interprogram-paste-function 'x-cut-buffer-or-selection-value) | |
273 | 2180 |
383 | 2181 ;;; Turn off window-splitting optimization; X is usually fast enough |
2182 ;;; that this is only annoying. | |
2183 (setq split-window-keep-point t) | |
2157
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
2184 |
11290
e7510a23df8e
(mode-line-buffer-identification): Eliminate %F.
Richard M. Stallman <rms@gnu.org>
parents:
10400
diff
changeset
|
2185 ;; Don't show the frame name; that's redundant with X. |
17811 | 2186 (setq-default mode-line-frame-identification " ") |
11290
e7510a23df8e
(mode-line-buffer-identification): Eliminate %F.
Richard M. Stallman <rms@gnu.org>
parents:
10400
diff
changeset
|
2187 |
15815
65dd474f666e
Delete code to disable f10 if motif.
Richard M. Stallman <rms@gnu.org>
parents:
15538
diff
changeset
|
2188 ;;; Motif direct handling of f10 wasn't working right, |
65dd474f666e
Delete code to disable f10 if motif.
Richard M. Stallman <rms@gnu.org>
parents:
15538
diff
changeset
|
2189 ;;; So temporarily we've turned it off in lwlib-Xm.c |
65dd474f666e
Delete code to disable f10 if motif.
Richard M. Stallman <rms@gnu.org>
parents:
15538
diff
changeset
|
2190 ;;; and turned the Emacs f10 back on. |
65dd474f666e
Delete code to disable f10 if motif.
Richard M. Stallman <rms@gnu.org>
parents:
15538
diff
changeset
|
2191 ;;; ;; Motif normally handles f10 itself, so don't try to handle it a second time. |
65dd474f666e
Delete code to disable f10 if motif.
Richard M. Stallman <rms@gnu.org>
parents:
15538
diff
changeset
|
2192 ;;; (if (featurep 'motif) |
65dd474f666e
Delete code to disable f10 if motif.
Richard M. Stallman <rms@gnu.org>
parents:
15538
diff
changeset
|
2193 ;;; (global-set-key [f10] 'ignore)) |
15058
767429c4d3d2
[motif]: Make f10 undefined.
Richard M. Stallman <rms@gnu.org>
parents:
14977
diff
changeset
|
2194 |
2157
0d77768bf3f2
Added library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2145
diff
changeset
|
2195 ;;; x-win.el ends here |