Mercurial > hg > xemacs-beta
annotate lisp/mule/latin.el @ 4616:ad2d2f4848f5
Add GNU Emacs' name for Mac Roman as an alias.
lisp/ChangeLog addition:
2009-02-02 Aidan Kehoe <kehoea@parhasard.net>
* mule/latin.el (macintosh):
Add GNU Emacs' name for this coding system as an alias.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Fri, 13 Feb 2009 15:44:05 +0000 |
parents | e0a8715fdb1f |
children | 257b468bf2ca |
rev | line source |
---|---|
3767 | 1 ;;; latin.el --- Roman-alphabet languages -*- coding: iso-2022-7bit; -*- |
464 | 2 |
3767 | 3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. |
4 ;; Licensed to the Free Software Foundation. | |
5 ;; Copyright (C) 1997 MORIOKA Tomohiko | |
6 ;; Copyright (C) 2001 Ben Wing. | |
7 ;; Copyright (C) 2002, 2005, 2006 Free Software Foundation | |
8 | |
9 ;; Keywords: multilingual, latin, dumped | |
464 | 10 |
11 ;; This file is part of XEmacs. | |
12 | |
13 ;; XEmacs is free software; you can redistribute it and/or modify it | |
14 ;; under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; XEmacs is distributed in the hope that it will be useful, but | |
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
21 ;; General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with XEmacs; see the file COPYING. If not, write to the Free | |
25 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA | |
26 ;; 02111-1307, USA. | |
27 | |
28 ;;; Commentary: | |
29 | |
3767 | 30 ;; For Roman-alphabet-using Europeans, eight coded character sets, |
31 ;; ISO8859-1,2,3,4,9,14,15,16 are supported. | |
464 | 32 |
33 ;;; Code: | |
34 | |
35 ;; Case table setup. We set up all the case tables using | |
36 ;; put-case-table-pair. The data for this comes from FSF Emacs 20.7 | |
37 ;; (lisp/international/latin-*.el), written by several people and | |
38 ;; updated by Erik Naggum. | |
39 | |
40 (defun setup-case-pairs (charset pairs) | |
3767 | 41 (loop |
42 for (uc lc) in pairs | |
43 with table = (standard-case-table) | |
44 do (put-case-table-pair | |
45 (make-char charset uc) (make-char charset lc) table))) | |
46 | |
47 ;; Latin-1's case is dealt with in iso8859-1.el, which see. Its syntax is | |
48 ;; initialised in syntax.c:complex_vars_of_syntax. | |
464 | 49 |
3767 | 50 |
51 ;; Latin-2 (ISO-8859-2). Central Europe; Czech, Slovak, Hungarian, Polish, | |
52 ;; Croatian, other languages. | |
53 ;; | |
54 ;; (Yes, it really is Central European. German written in Latin 2 and using | |
55 ;; only Umlaute and the sharp S in its non-ASCII repertoire is bit-for-bit | |
56 ;; identical with the same text in Latin-1.) | |
464 | 57 |
3767 | 58 ;; The default character syntax is now word. Pay attention to the |
59 ;; exceptions in ISO-8859-2, copying them from ISO-8859-1. | |
60 (loop | |
61 for (latin-2 latin-1) | |
62 in '((#xA0 #xA0) ;; NO BREAK SPACE | |
63 (#xA2 #xB4) ;; BREVE, ACUTE ACCENT | |
64 (#xA4 #xA4) ;; CURRENCY SIGN | |
65 (#xA7 #xA7) ;; SECTION SIGN | |
66 (#xA8 #xA8) ;; DIAERESIS | |
67 (#xAD #xAD) ;; SOFT HYPHEN | |
68 (#xB0 #xB0) ;; DEGREE SIGN | |
69 (#xB2 #xB4) ;; OGONEK, ACUTE ACCENT | |
70 (#xB4 #xB4) ;; ACUTE ACCENT | |
71 (#xB7 #xB4) ;; CARON, ACUTE ACCENT | |
72 (#xB8 #xB8) ;; CEDILLA | |
73 (#xBD #xB4) ;; DOUBLE ACUTE ACCENT, ACUTE ACCENT | |
74 (#xD7 #xD7) ;; MULTIPLICATION SIGN | |
75 (#xF7 #xF7) ;; DIVISION SIGN | |
76 (#xFF #xB4)) ;; DOT ABOVE, ACUTE ACCENT | |
77 with syntax-table = (standard-syntax-table) | |
78 do (modify-syntax-entry | |
79 (make-char 'latin-iso8859-2 latin-2) | |
80 (string (char-syntax (make-char 'latin-iso8859-1 latin-1))) | |
81 syntax-table)) | |
464 | 82 |
3767 | 83 ;; Case. |
464 | 84 (setup-case-pairs |
85 'latin-iso8859-2 | |
3767 | 86 '((#xA1 #xB1) ;; A WITH OGONEK |
87 (#xA3 #xB3) ;; L WITH STROKE | |
88 (#xA5 #xB5) ;; L WITH CARON | |
89 (#xA6 #xB6) ;; S WITH ACUTE | |
90 (#xA9 #xB9) ;; S WITH CARON | |
91 (#xAA #xBA) ;; S WITH CEDILLA | |
92 (#xAB #xBB) ;; T WITH CARON | |
93 (#xAC #xBC) ;; Z WITH ACUTE | |
94 (#xAE #xBE) ;; Z WITH CARON | |
95 (#xAF #xBF) ;; Z WITH DOT ABOVE | |
96 (#xC0 #xE0) ;; R WITH ACUTE | |
97 (#xC1 #xE1) ;; A WITH ACUTE | |
98 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
99 (#xC3 #xE3) ;; A WITH BREVE | |
100 (#xC4 #xE4) ;; A WITH DIAERESIS | |
101 (#xC5 #xE5) ;; L WITH ACUTE | |
102 (#xC6 #xE6) ;; C WITH ACUTE | |
103 (#xC7 #xE7) ;; C WITH CEDILLA | |
104 (#xC8 #xE8) ;; C WITH CARON | |
105 (#xC9 #xE9) ;; E WITH ACUTE | |
106 (#xCA #xEA) ;; E WITH OGONEK | |
107 (#xCB #xEB) ;; E WITH DIAERESIS | |
108 (#xCC #xEC) ;; E WITH CARON | |
109 (#xCD #xED) ;; I WITH ACUTE | |
110 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
111 (#xCF #xEF) ;; D WITH CARON | |
112 (#xD0 #xF0) ;; D WITH STROKE | |
113 (#xD1 #xF1) ;; N WITH ACUTE | |
114 (#xD2 #xF2) ;; N WITH CARON | |
115 (#xD3 #xF3) ;; O WITH ACUTE | |
116 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
117 (#xD5 #xF5) ;; O WITH DOUBLE ACUTE | |
118 (#xD6 #xF6) ;; O WITH DIAERESIS | |
119 (#xD8 #xF8) ;; R WITH CARON | |
120 (#xD9 #xF9) ;; U WITH RING ABOVE | |
121 (#xDA #xFA) ;; U WITH ACUTE | |
122 (#xDB #xFB) ;; U WITH DOUBLE ACUTE | |
123 (#xDC #xFC) ;; U WITH DIAERESIS | |
124 (#xDD #xFD) ;; Y WITH ACUTE | |
125 (#xDE #xFE))) ;; T WITH CEDILLA | |
464 | 126 |
4299 | 127 (make-8-bit-coding-system |
128 'iso-8859-2 | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
129 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
130 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
131 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
132 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
133 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
134 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
135 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
136 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
137 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
138 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
139 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
140 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
141 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
142 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
143 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
144 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
145 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
146 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
147 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
148 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
149 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
150 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
151 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
152 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
153 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
154 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
155 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
156 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
157 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
158 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
159 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
160 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
161 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
162 (#xA1 ?\u0104) ;; LATIN CAPITAL LETTER A WITH OGONEK |
4299 | 163 (#xA2 ?\u02D8) ;; BREVE |
164 (#xA3 ?\u0141) ;; LATIN CAPITAL LETTER L WITH STROKE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
165 (#xA4 ?\u00A4) ;; CURRENCY SIGN |
4299 | 166 (#xA5 ?\u013D) ;; LATIN CAPITAL LETTER L WITH CARON |
167 (#xA6 ?\u015A) ;; LATIN CAPITAL LETTER S WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
168 (#xA7 ?\u00A7) ;; SECTION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
169 (#xA8 ?\u00A8) ;; DIAERESIS |
4299 | 170 (#xA9 ?\u0160) ;; LATIN CAPITAL LETTER S WITH CARON |
171 (#xAA ?\u015E) ;; LATIN CAPITAL LETTER S WITH CEDILLA | |
172 (#xAB ?\u0164) ;; LATIN CAPITAL LETTER T WITH CARON | |
173 (#xAC ?\u0179) ;; LATIN CAPITAL LETTER Z WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
174 (#xAD ?\u00AD) ;; SOFT HYPHEN |
4299 | 175 (#xAE ?\u017D) ;; LATIN CAPITAL LETTER Z WITH CARON |
176 (#xAF ?\u017B) ;; LATIN CAPITAL LETTER Z WITH DOT ABOVE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
177 (#xB0 ?\u00B0) ;; DEGREE SIGN |
4299 | 178 (#xB1 ?\u0105) ;; LATIN SMALL LETTER A WITH OGONEK |
179 (#xB2 ?\u02DB) ;; OGONEK | |
180 (#xB3 ?\u0142) ;; LATIN SMALL LETTER L WITH STROKE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
181 (#xB4 ?\u00B4) ;; ACUTE ACCENT |
4299 | 182 (#xB5 ?\u013E) ;; LATIN SMALL LETTER L WITH CARON |
183 (#xB6 ?\u015B) ;; LATIN SMALL LETTER S WITH ACUTE | |
184 (#xB7 ?\u02C7) ;; CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
185 (#xB8 ?\u00B8) ;; CEDILLA |
4299 | 186 (#xB9 ?\u0161) ;; LATIN SMALL LETTER S WITH CARON |
187 (#xBA ?\u015F) ;; LATIN SMALL LETTER S WITH CEDILLA | |
188 (#xBB ?\u0165) ;; LATIN SMALL LETTER T WITH CARON | |
189 (#xBC ?\u017A) ;; LATIN SMALL LETTER Z WITH ACUTE | |
190 (#xBD ?\u02DD) ;; DOUBLE ACUTE ACCENT | |
191 (#xBE ?\u017E) ;; LATIN SMALL LETTER Z WITH CARON | |
192 (#xBF ?\u017C) ;; LATIN SMALL LETTER Z WITH DOT ABOVE | |
193 (#xC0 ?\u0154) ;; LATIN CAPITAL LETTER R WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
194 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
195 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
4299 | 196 (#xC3 ?\u0102) ;; LATIN CAPITAL LETTER A WITH BREVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
197 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
4299 | 198 (#xC5 ?\u0139) ;; LATIN CAPITAL LETTER L WITH ACUTE |
199 (#xC6 ?\u0106) ;; LATIN CAPITAL LETTER C WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
200 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
4299 | 201 (#xC8 ?\u010C) ;; LATIN CAPITAL LETTER C WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
202 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
4299 | 203 (#xCA ?\u0118) ;; LATIN CAPITAL LETTER E WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
204 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
4299 | 205 (#xCC ?\u011A) ;; LATIN CAPITAL LETTER E WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
206 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
207 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
4299 | 208 (#xCF ?\u010E) ;; LATIN CAPITAL LETTER D WITH CARON |
209 (#xD0 ?\u0110) ;; LATIN CAPITAL LETTER D WITH STROKE | |
210 (#xD1 ?\u0143) ;; LATIN CAPITAL LETTER N WITH ACUTE | |
211 (#xD2 ?\u0147) ;; LATIN CAPITAL LETTER N WITH CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
212 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
213 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
4299 | 214 (#xD5 ?\u0150) ;; LATIN CAPITAL LETTER O WITH DOUBLE ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
215 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
216 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
4299 | 217 (#xD8 ?\u0158) ;; LATIN CAPITAL LETTER R WITH CARON |
218 (#xD9 ?\u016E) ;; LATIN CAPITAL LETTER U WITH RING ABOVE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
219 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
4299 | 220 (#xDB ?\u0170) ;; LATIN CAPITAL LETTER U WITH DOUBLE ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
221 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
222 (#xDD ?\u00DD) ;; LATIN CAPITAL LETTER Y WITH ACUTE |
4299 | 223 (#xDE ?\u0162) ;; LATIN CAPITAL LETTER T WITH CEDILLA |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
224 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
4299 | 225 (#xE0 ?\u0155) ;; LATIN SMALL LETTER R WITH ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
226 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
227 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
4299 | 228 (#xE3 ?\u0103) ;; LATIN SMALL LETTER A WITH BREVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
229 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
4299 | 230 (#xE5 ?\u013A) ;; LATIN SMALL LETTER L WITH ACUTE |
231 (#xE6 ?\u0107) ;; LATIN SMALL LETTER C WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
232 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
4299 | 233 (#xE8 ?\u010D) ;; LATIN SMALL LETTER C WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
234 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
4299 | 235 (#xEA ?\u0119) ;; LATIN SMALL LETTER E WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
236 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
4299 | 237 (#xEC ?\u011B) ;; LATIN SMALL LETTER E WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
238 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
239 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
4299 | 240 (#xEF ?\u010F) ;; LATIN SMALL LETTER D WITH CARON |
241 (#xF0 ?\u0111) ;; LATIN SMALL LETTER D WITH STROKE | |
242 (#xF1 ?\u0144) ;; LATIN SMALL LETTER N WITH ACUTE | |
243 (#xF2 ?\u0148) ;; LATIN SMALL LETTER N WITH CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
244 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
245 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
4299 | 246 (#xF5 ?\u0151) ;; LATIN SMALL LETTER O WITH DOUBLE ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
247 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
248 (#xF7 ?\u00F7) ;; DIVISION SIGN |
4299 | 249 (#xF8 ?\u0159) ;; LATIN SMALL LETTER R WITH CARON |
250 (#xF9 ?\u016F) ;; LATIN SMALL LETTER U WITH RING ABOVE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
251 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
4299 | 252 (#xFB ?\u0171) ;; LATIN SMALL LETTER U WITH DOUBLE ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
253 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
254 (#xFD ?\u00FD) ;; LATIN SMALL LETTER Y WITH ACUTE |
4299 | 255 (#xFE ?\u0163) ;; LATIN SMALL LETTER T WITH CEDILLA |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
256 (#xFF ?\u02D9)) ;; DOT ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
257 "ISO-8859-2 (Latin-2) for Central Europe. |
4299 | 258 See also `windows-1250', and `iso-8859-1', which is compatible with Latin 2 |
259 when used to write German (or English, of course). " | |
260 '(mnemonic "Latin 2" | |
261 aliases (iso-latin-2 latin-2))) | |
4447
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
262 |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
263 (make-8-bit-coding-system |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
264 'windows-1250 |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
265 '((#x80 ?\u20AC) ;; EURO SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
266 (#x82 ?\u201A) ;; SINGLE LOW-9 QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
267 (#x84 ?\u201E) ;; DOUBLE LOW-9 QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
268 (#x85 ?\u2026) ;; HORIZONTAL ELLIPSIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
269 (#x86 ?\u2020) ;; DAGGER |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
270 (#x87 ?\u2021) ;; DOUBLE DAGGER |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
271 (#x89 ?\u2030) ;; PER MILLE SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
272 (#x8A ?\u0160) ;; LATIN CAPITAL LETTER S WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
273 (#x8B ?\u2039) ;; SINGLE LEFT-POINTING ANGLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
274 (#x8C ?\u015A) ;; LATIN CAPITAL LETTER S WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
275 (#x8D ?\u0164) ;; LATIN CAPITAL LETTER T WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
276 (#x8E ?\u017D) ;; LATIN CAPITAL LETTER Z WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
277 (#x8F ?\u0179) ;; LATIN CAPITAL LETTER Z WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
278 (#x91 ?\u2018) ;; LEFT SINGLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
279 (#x92 ?\u2019) ;; RIGHT SINGLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
280 (#x93 ?\u201C) ;; LEFT DOUBLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
281 (#x94 ?\u201D) ;; RIGHT DOUBLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
282 (#x95 ?\u2022) ;; BULLET |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
283 (#x96 ?\u2013) ;; EN DASH |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
284 (#x97 ?\u2014) ;; EM DASH |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
285 (#x99 ?\u2122) ;; TRADE MARK SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
286 (#x9A ?\u0161) ;; LATIN SMALL LETTER S WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
287 (#x9B ?\u203A) ;; SINGLE RIGHT-POINTING ANGLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
288 (#x9C ?\u015B) ;; LATIN SMALL LETTER S WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
289 (#x9D ?\u0165) ;; LATIN SMALL LETTER T WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
290 (#x9E ?\u017E) ;; LATIN SMALL LETTER Z WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
291 (#x9F ?\u017A) ;; LATIN SMALL LETTER Z WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
292 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
293 (#xA1 ?\u02C7) ;; CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
294 (#xA2 ?\u02D8) ;; BREVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
295 (#xA3 ?\u0141) ;; LATIN CAPITAL LETTER L WITH STROKE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
296 (#xA4 ?\u00A4) ;; CURRENCY SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
297 (#xA5 ?\u0104) ;; LATIN CAPITAL LETTER A WITH OGONEK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
298 (#xA6 ?\u00A6) ;; BROKEN BAR |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
299 (#xA7 ?\u00A7) ;; SECTION SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
300 (#xA8 ?\u00A8) ;; DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
301 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
302 (#xAA ?\u015E) ;; LATIN CAPITAL LETTER S WITH CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
303 (#xAB ?\u00AB) ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
304 (#xAC ?\u00AC) ;; NOT SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
305 (#xAD ?\u00AD) ;; SOFT HYPHEN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
306 (#xAE ?\u00AE) ;; REGISTERED SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
307 (#xAF ?\u017B) ;; LATIN CAPITAL LETTER Z WITH DOT ABOVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
308 (#xB0 ?\u00B0) ;; DEGREE SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
309 (#xB1 ?\u00B1) ;; PLUS-MINUS SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
310 (#xB2 ?\u02DB) ;; OGONEK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
311 (#xB3 ?\u0142) ;; LATIN SMALL LETTER L WITH STROKE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
312 (#xB4 ?\u00B4) ;; ACUTE ACCENT |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
313 (#xB5 ?\u00B5) ;; MICRO SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
314 (#xB6 ?\u00B6) ;; PILCROW SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
315 (#xB7 ?\u00B7) ;; MIDDLE DOT |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
316 (#xB8 ?\u00B8) ;; CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
317 (#xB9 ?\u0105) ;; LATIN SMALL LETTER A WITH OGONEK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
318 (#xBA ?\u015F) ;; LATIN SMALL LETTER S WITH CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
319 (#xBB ?\u00BB) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
320 (#xBC ?\u013D) ;; LATIN CAPITAL LETTER L WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
321 (#xBD ?\u02DD) ;; DOUBLE ACUTE ACCENT |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
322 (#xBE ?\u013E) ;; LATIN SMALL LETTER L WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
323 (#xBF ?\u017C) ;; LATIN SMALL LETTER Z WITH DOT ABOVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
324 (#xC0 ?\u0154) ;; LATIN CAPITAL LETTER R WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
325 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
326 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
327 (#xC3 ?\u0102) ;; LATIN CAPITAL LETTER A WITH BREVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
328 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
329 (#xC5 ?\u0139) ;; LATIN CAPITAL LETTER L WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
330 (#xC6 ?\u0106) ;; LATIN CAPITAL LETTER C WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
331 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
332 (#xC8 ?\u010C) ;; LATIN CAPITAL LETTER C WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
333 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
334 (#xCA ?\u0118) ;; LATIN CAPITAL LETTER E WITH OGONEK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
335 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
336 (#xCC ?\u011A) ;; LATIN CAPITAL LETTER E WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
337 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
338 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
339 (#xCF ?\u010E) ;; LATIN CAPITAL LETTER D WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
340 (#xD0 ?\u0110) ;; LATIN CAPITAL LETTER D WITH STROKE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
341 (#xD1 ?\u0143) ;; LATIN CAPITAL LETTER N WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
342 (#xD2 ?\u0147) ;; LATIN CAPITAL LETTER N WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
343 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
344 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
345 (#xD5 ?\u0150) ;; LATIN CAPITAL LETTER O WITH DOUBLE ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
346 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
347 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
348 (#xD8 ?\u0158) ;; LATIN CAPITAL LETTER R WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
349 (#xD9 ?\u016E) ;; LATIN CAPITAL LETTER U WITH RING ABOVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
350 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
351 (#xDB ?\u0170) ;; LATIN CAPITAL LETTER U WITH DOUBLE ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
352 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
353 (#xDD ?\u00DD) ;; LATIN CAPITAL LETTER Y WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
354 (#xDE ?\u0162) ;; LATIN CAPITAL LETTER T WITH CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
355 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
356 (#xE0 ?\u0155) ;; LATIN SMALL LETTER R WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
357 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
358 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
359 (#xE3 ?\u0103) ;; LATIN SMALL LETTER A WITH BREVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
360 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
361 (#xE5 ?\u013A) ;; LATIN SMALL LETTER L WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
362 (#xE6 ?\u0107) ;; LATIN SMALL LETTER C WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
363 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
364 (#xE8 ?\u010D) ;; LATIN SMALL LETTER C WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
365 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
366 (#xEA ?\u0119) ;; LATIN SMALL LETTER E WITH OGONEK |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
367 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
368 (#xEC ?\u011B) ;; LATIN SMALL LETTER E WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
369 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
370 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
371 (#xEF ?\u010F) ;; LATIN SMALL LETTER D WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
372 (#xF0 ?\u0111) ;; LATIN SMALL LETTER D WITH STROKE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
373 (#xF1 ?\u0144) ;; LATIN SMALL LETTER N WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
374 (#xF2 ?\u0148) ;; LATIN SMALL LETTER N WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
375 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
376 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
377 (#xF5 ?\u0151) ;; LATIN SMALL LETTER O WITH DOUBLE ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
378 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
379 (#xF7 ?\u00F7) ;; DIVISION SIGN |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
380 (#xF8 ?\u0159) ;; LATIN SMALL LETTER R WITH CARON |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
381 (#xF9 ?\u016F) ;; LATIN SMALL LETTER U WITH RING ABOVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
382 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
383 (#xFB ?\u0171) ;; LATIN SMALL LETTER U WITH DOUBLE ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
384 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
385 (#xFD ?\u00FD) ;; LATIN SMALL LETTER Y WITH ACUTE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
386 (#xFE ?\u0163) ;; LATIN SMALL LETTER T WITH CEDILLA |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
387 (#xFF ?\u02D9)) ;; DOT ABOVE |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
388 "CP 1250, Microsoft's encoding for Central Europe. |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
389 See also `iso-8859-2' and `window-1252' for Western Europe. " |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
390 '(mnemonic "CP1250" |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
391 aliases (cp1250))) |
15dd5229cea5
Support windows-1250 on Unix as well as Windows.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4325
diff
changeset
|
392 |
3767 | 393 |
394 ;; | |
395 ;; Latin-3 (ISO-8859-3). Esperanto, Maltese and Turkish. Obsolescent. | |
464 | 396 |
3767 | 397 ;; Initialise the non-word syntax codes in ISO-8859-3, copying them from |
398 ;; ISO-8859-1. | |
399 (loop | |
400 for (latin-3 latin-1) | |
401 in '((#xA0 #xA0) ;; NO BREAK SPACE | |
402 (#xA2 #xB4) ;; BREVE, ACUTE ACCENT | |
403 (#xA3 #xA3) ;; POUND SIGN | |
404 (#xA4 #xA4) ;; CURRENCY SIGN | |
405 (#xA7 #xA7) ;; SECTION SIGN | |
406 (#xA8 #xA8) ;; DIAERESIS | |
407 (#xAD #xAD) ;; SOFT HYPHEN | |
408 (#xB0 #xB0) ;; DEGREE SIGN | |
409 (#xB2 #xB2) ;; SUPERSCRIPT TWO | |
410 (#xB3 #xB3) ;; SUPERSCRIPT THREE | |
411 (#xB4 #xB4) ;; ACUTE ACCENT | |
412 (#xB5 #xB5) ;; MICRO SIGN | |
413 (#xB7 #xB7) ;; MIDDLE DOT | |
414 (#xB8 #xB8) ;; CEDILLA | |
415 (#xBD #xBD) ;; VULGAR FRACTION ONE HALF | |
416 (#xD7 #xD7) ;; MULTIPLICATION SIGN | |
417 (#xF7 #xF7) ;; DIVISION SIGN | |
418 (#xFF #xB4)) ;; DOT ABOVE, ACUTE ACCENT | |
419 with syntax-table = (standard-syntax-table) | |
420 do (modify-syntax-entry | |
421 (make-char 'latin-iso8859-3 latin-3) | |
422 (string (char-syntax (make-char 'latin-iso8859-1 latin-1))) | |
423 syntax-table)) | |
424 | |
425 ;; Case. | |
464 | 426 (setup-case-pairs |
427 'latin-iso8859-3 | |
3767 | 428 '((#xA1 #xB1) ;; H WITH STROKE |
429 (#xA6 #xB6) ;; H WITH CIRCUMFLEX | |
430 (#xAA #xBA) ;; S WITH CEDILLA | |
431 (#xAB #xBB) ;; G WITH BREVE | |
432 (#xAC #xBC) ;; J WITH CIRCUMFLEX | |
433 (#xAF #xBF) ;; Z WITH DOT ABOVE | |
434 (#xC0 #xE0) ;; A WITH GRAVE | |
435 (#xC1 #xE1) ;; A WITH ACUTE | |
436 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
437 (#xC4 #xE4) ;; A WITH DIAERESIS | |
438 (#xC5 #xE5) ;; C WITH DOT ABOVE | |
439 (#xC6 #xE6) ;; C WITH CIRCUMFLEX | |
440 (#xC7 #xE7) ;; C WITH CEDILLA | |
441 (#xC8 #xE8) ;; E WITH GRAVE | |
442 (#xC9 #xE9) ;; E WITH ACUTE | |
443 (#xCA #xEA) ;; E WITH CIRCUMFLEX | |
444 (#xCB #xEB) ;; E WITH DIAERESIS | |
445 (#xCC #xEC) ;; I WITH GRAVE | |
446 (#xCD #xED) ;; I WITH ACUTE | |
447 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
448 (#xCF #xEF) ;; I WITH DIAERESIS | |
449 (#xD1 #xF1) ;; N WITH TILDE | |
450 (#xD2 #xF2) ;; O WITH GRAVE | |
451 (#xD3 #xF3) ;; O WITH ACUTE | |
452 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
453 (#xD5 #xF5) ;; G WITH DOT ABOVE | |
454 (#xD6 #xF6) ;; O WITH DIAERESIS | |
455 (#xD8 #xF8) ;; G WITH CIRCUMFLEX | |
456 (#xD9 #xF9) ;; U WITH GRAVE | |
457 (#xDA #xFA) ;; U WITH ACUTE | |
458 (#xDB #xFB) ;; U WITH CIRCUMFLEX | |
459 (#xDC #xFC) ;; U WITH DIAERESIS | |
460 (#xDD #xFD) ;; U WITH BREVE | |
461 (#xDE #xFE))) ;; S WITH CIRCUMFLEX | |
464 | 462 |
4299 | 463 (make-8-bit-coding-system |
464 'iso-8859-3 | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
465 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
466 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
467 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
468 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
469 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
470 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
471 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
472 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
473 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
474 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
475 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
476 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
477 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
478 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
479 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
480 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
481 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
482 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
483 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
484 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
485 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
486 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
487 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
488 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
489 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
490 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
491 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
492 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
493 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
494 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
495 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
496 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
497 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
498 (#xA1 ?\u0126) ;; LATIN CAPITAL LETTER H WITH STROKE |
4299 | 499 (#xA2 ?\u02D8) ;; BREVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
500 (#xA3 ?\u00A3) ;; POUND SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
501 (#xA4 ?\u00A4) ;; CURRENCY SIGN |
4299 | 502 (#xA6 ?\u0124) ;; LATIN CAPITAL LETTER H WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
503 (#xA7 ?\u00A7) ;; SECTION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
504 (#xA8 ?\u00A8) ;; DIAERESIS |
4299 | 505 (#xA9 ?\u0130) ;; LATIN CAPITAL LETTER I WITH DOT ABOVE |
506 (#xAA ?\u015E) ;; LATIN CAPITAL LETTER S WITH CEDILLA | |
507 (#xAB ?\u011E) ;; LATIN CAPITAL LETTER G WITH BREVE | |
508 (#xAC ?\u0134) ;; LATIN CAPITAL LETTER J WITH CIRCUMFLEX | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
509 (#xAD ?\u00AD) ;; SOFT HYPHEN |
4299 | 510 (#xAF ?\u017B) ;; LATIN CAPITAL LETTER Z WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
511 (#xB0 ?\u00B0) ;; DEGREE SIGN |
4299 | 512 (#xB1 ?\u0127) ;; LATIN SMALL LETTER H WITH STROKE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
513 (#xB2 ?\u00B2) ;; SUPERSCRIPT TWO |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
514 (#xB3 ?\u00B3) ;; SUPERSCRIPT THREE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
515 (#xB4 ?\u00B4) ;; ACUTE ACCENT |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
516 (#xB5 ?\u00B5) ;; MICRO SIGN |
4299 | 517 (#xB6 ?\u0125) ;; LATIN SMALL LETTER H WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
518 (#xB7 ?\u00B7) ;; MIDDLE DOT |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
519 (#xB8 ?\u00B8) ;; CEDILLA |
4299 | 520 (#xB9 ?\u0131) ;; LATIN SMALL LETTER DOTLESS I |
521 (#xBA ?\u015F) ;; LATIN SMALL LETTER S WITH CEDILLA | |
522 (#xBB ?\u011F) ;; LATIN SMALL LETTER G WITH BREVE | |
523 (#xBC ?\u0135) ;; LATIN SMALL LETTER J WITH CIRCUMFLEX | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
524 (#xBD ?\u00BD) ;; VULGAR FRACTION ONE HALF |
4299 | 525 (#xBF ?\u017C) ;; LATIN SMALL LETTER Z WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
526 (#xC0 ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
527 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
528 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
529 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
4299 | 530 (#xC5 ?\u010A) ;; LATIN CAPITAL LETTER C WITH DOT ABOVE |
531 (#xC6 ?\u0108) ;; LATIN CAPITAL LETTER C WITH CIRCUMFLEX | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
532 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
533 (#xC8 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
534 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
535 (#xCA ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
536 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
537 (#xCC ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
538 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
539 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
540 (#xCF ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
541 (#xD1 ?\u00D1) ;; LATIN CAPITAL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
542 (#xD2 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
543 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
544 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
4299 | 545 (#xD5 ?\u0120) ;; LATIN CAPITAL LETTER G WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
546 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
547 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
4299 | 548 (#xD8 ?\u011C) ;; LATIN CAPITAL LETTER G WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
549 (#xD9 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
550 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
551 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
552 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
4299 | 553 (#xDD ?\u016C) ;; LATIN CAPITAL LETTER U WITH BREVE |
554 (#xDE ?\u015C) ;; LATIN CAPITAL LETTER S WITH CIRCUMFLEX | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
555 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
556 (#xE0 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
557 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
558 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
559 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
4299 | 560 (#xE5 ?\u010B) ;; LATIN SMALL LETTER C WITH DOT ABOVE |
561 (#xE6 ?\u0109) ;; LATIN SMALL LETTER C WITH CIRCUMFLEX | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
562 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
563 (#xE8 ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
564 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
565 (#xEA ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
566 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
567 (#xEC ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
568 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
569 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
570 (#xEF ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
571 (#xF1 ?\u00F1) ;; LATIN SMALL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
572 (#xF2 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
573 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
574 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
4299 | 575 (#xF5 ?\u0121) ;; LATIN SMALL LETTER G WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
576 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
577 (#xF7 ?\u00F7) ;; DIVISION SIGN |
4299 | 578 (#xF8 ?\u011D) ;; LATIN SMALL LETTER G WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
579 (#xF9 ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
580 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
581 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
582 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
4299 | 583 (#xFD ?\u016D) ;; LATIN SMALL LETTER U WITH BREVE |
584 (#xFE ?\u015D) ;; LATIN SMALL LETTER S WITH CIRCUMFLEX | |
585 (#xFF ?\u02D9)) ;; DOT ABOVE | |
586 "ISO-8859-3 (Latin-3)" | |
587 '(mnemonic "Latin 3" | |
588 documentation "Aimed at Turkish, Maltese and Esperanto. " | |
589 aliases (iso-latin-3 latin-3))) | |
3767 | 590 |
591 | |
592 ;; Latin-4 (ISO-8859-4) | |
593 | |
594 ;; Estonian, Latvian, Lithuanian, Greenlandic, and Sami. Obsolescent. | |
464 | 595 |
3767 | 596 ;; The default character syntax is now word. Pay attention to the |
597 ;; exceptions in ISO-8859-4, copying them from ISO-8859-1. | |
598 (loop | |
599 for (latin-4 latin-1) | |
600 in '((#xA0 #xA0) ;; NO BREAK SPACE | |
601 (#xA4 #xA4) ;; CURRENCY SIGN | |
602 (#xA7 #xA7) ;; SECTION SIGN | |
603 (#xA8 #xA8) ;; DIAERESIS | |
604 (#xAD #xAD) ;; SOFT HYPHEN | |
605 (#xB0 #xB0) ;; DEGREE SIGN | |
606 (#xB2 #xB4) ;; OGONEK, ACUTE ACCENT | |
607 (#xB4 #xB4) ;; ACUTE ACCENT | |
608 (#xB7 #xB4) ;; CARON, ACUTE ACCENT | |
609 (#xB8 #xB8) ;; CEDILLA | |
610 (#xD7 #xD7) ;; MULTIPLICATION SIGN | |
611 (#xF7 #xF7) ;; DIVISION SIGN | |
612 (#xFF #xB4)) ;; DOT ABOVE, ACUTE ACCENT | |
613 with syntax-table = (standard-syntax-table) | |
614 do (modify-syntax-entry | |
615 (make-char 'latin-iso8859-4 latin-4) | |
616 (string (char-syntax (make-char 'latin-iso8859-1 latin-1))) | |
617 syntax-table)) | |
618 | |
619 ;; Case. | |
464 | 620 (setup-case-pairs |
621 'latin-iso8859-4 | |
3767 | 622 '((#xA1 #xB1) ;; A WITH OGONEK |
623 (#xA3 #xB3) ;; R WITH CEDILLA | |
624 (#xA5 #xB5) ;; I WITH TILDE | |
625 (#xA6 #xB6) ;; L WITH CEDILLA | |
626 (#xA9 #xB9) ;; S WITH CARON | |
627 (#xAA #xBA) ;; E WITH MACRON | |
628 (#xAB #xBB) ;; G WITH CEDILLA | |
629 (#xAC #xBC) ;; T WITH STROKE | |
630 (#xAE #xBE) ;; Z WITH CARON | |
631 (#xBD #xBF) ;; ENG | |
632 (#xC0 #xE0) ;; A WITH MACRON | |
633 (#xC1 #xE1) ;; A WITH ACUTE | |
634 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
635 (#xC3 #xE3) ;; A WITH TILDE | |
636 (#xC4 #xE4) ;; A WITH DIAERESIS | |
637 (#xC5 #xE5) ;; A WITH RING ABOVE | |
638 (#xC6 #xE6) ;; AE | |
639 (#xC7 #xE7) ;; I WITH OGONEK | |
640 (#xC8 #xE8) ;; C WITH CARON | |
641 (#xC9 #xE9) ;; E WITH ACUTE | |
642 (#xCA #xEA) ;; E WITH OGONEK | |
643 (#xCB #xEB) ;; E WITH DIAERESIS | |
644 (#xCC #xEC) ;; E WITH DOT ABOVE | |
645 (#xCD #xED) ;; I WITH ACUTE | |
646 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
647 (#xCF #xEF) ;; I WITH MACRON | |
648 (#xD0 #xF0) ;; D WITH STROKE | |
649 (#xD1 #xF1) ;; N WITH CEDILLA | |
650 (#xD2 #xF2) ;; O WITH MACRON | |
651 (#xD3 #xF3) ;; K WITH CEDILLA | |
652 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
653 (#xD5 #xF5) ;; O WITH TILDE | |
654 (#xD6 #xF6) ;; O WITH DIAERESIS | |
655 (#xD8 #xF8) ;; O WITH STROKE | |
656 (#xD9 #xF9) ;; U WITH OGONEK | |
657 (#xDA #xFA) ;; U WITH ACUTE | |
658 (#xDB #xFB) ;; U WITH CIRCUMFLEX | |
659 (#xDC #xFC) ;; U WITH DIAERESIS | |
660 (#xDD #xFD) ;; U WITH TILDE | |
661 (#xDE #xFE))) ;; U WITH MACRON | |
662 | |
4299 | 663 (make-8-bit-coding-system |
664 'iso-8859-4 | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
665 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
666 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
667 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
668 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
669 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
670 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
671 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
672 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
673 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
674 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
675 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
676 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
677 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
678 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
679 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
680 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
681 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
682 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
683 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
684 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
685 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
686 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
687 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
688 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
689 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
690 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
691 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
692 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
693 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
694 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
695 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
696 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
697 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
698 (#xA1 ?\u0104) ;; LATIN CAPITAL LETTER A WITH OGONEK |
4299 | 699 (#xA2 ?\u0138) ;; LATIN SMALL LETTER KRA |
700 (#xA3 ?\u0156) ;; LATIN CAPITAL LETTER R WITH CEDILLA | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
701 (#xA4 ?\u00A4) ;; CURRENCY SIGN |
4299 | 702 (#xA5 ?\u0128) ;; LATIN CAPITAL LETTER I WITH TILDE |
703 (#xA6 ?\u013B) ;; LATIN CAPITAL LETTER L WITH CEDILLA | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
704 (#xA7 ?\u00A7) ;; SECTION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
705 (#xA8 ?\u00A8) ;; DIAERESIS |
4299 | 706 (#xA9 ?\u0160) ;; LATIN CAPITAL LETTER S WITH CARON |
707 (#xAA ?\u0112) ;; LATIN CAPITAL LETTER E WITH MACRON | |
708 (#xAB ?\u0122) ;; LATIN CAPITAL LETTER G WITH CEDILLA | |
709 (#xAC ?\u0166) ;; LATIN CAPITAL LETTER T WITH STROKE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
710 (#xAD ?\u00AD) ;; SOFT HYPHEN |
4299 | 711 (#xAE ?\u017D) ;; LATIN CAPITAL LETTER Z WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
712 (#xAF ?\u00AF) ;; MACRON |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
713 (#xB0 ?\u00B0) ;; DEGREE SIGN |
4299 | 714 (#xB1 ?\u0105) ;; LATIN SMALL LETTER A WITH OGONEK |
715 (#xB2 ?\u02DB) ;; OGONEK | |
716 (#xB3 ?\u0157) ;; LATIN SMALL LETTER R WITH CEDILLA | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
717 (#xB4 ?\u00B4) ;; ACUTE ACCENT |
4299 | 718 (#xB5 ?\u0129) ;; LATIN SMALL LETTER I WITH TILDE |
719 (#xB6 ?\u013C) ;; LATIN SMALL LETTER L WITH CEDILLA | |
720 (#xB7 ?\u02C7) ;; CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
721 (#xB8 ?\u00B8) ;; CEDILLA |
4299 | 722 (#xB9 ?\u0161) ;; LATIN SMALL LETTER S WITH CARON |
723 (#xBA ?\u0113) ;; LATIN SMALL LETTER E WITH MACRON | |
724 (#xBB ?\u0123) ;; LATIN SMALL LETTER G WITH CEDILLA | |
725 (#xBC ?\u0167) ;; LATIN SMALL LETTER T WITH STROKE | |
726 (#xBD ?\u014A) ;; LATIN CAPITAL LETTER ENG | |
727 (#xBE ?\u017E) ;; LATIN SMALL LETTER Z WITH CARON | |
728 (#xBF ?\u014B) ;; LATIN SMALL LETTER ENG | |
729 (#xC0 ?\u0100) ;; LATIN CAPITAL LETTER A WITH MACRON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
730 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
731 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
732 (#xC3 ?\u00C3) ;; LATIN CAPITAL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
733 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
734 (#xC5 ?\u00C5) ;; LATIN CAPITAL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
735 (#xC6 ?\u00C6) ;; LATIN CAPITAL LETTER AE |
4299 | 736 (#xC7 ?\u012E) ;; LATIN CAPITAL LETTER I WITH OGONEK |
737 (#xC8 ?\u010C) ;; LATIN CAPITAL LETTER C WITH CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
738 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
4299 | 739 (#xCA ?\u0118) ;; LATIN CAPITAL LETTER E WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
740 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
4299 | 741 (#xCC ?\u0116) ;; LATIN CAPITAL LETTER E WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
742 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
743 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
4299 | 744 (#xCF ?\u012A) ;; LATIN CAPITAL LETTER I WITH MACRON |
745 (#xD0 ?\u0110) ;; LATIN CAPITAL LETTER D WITH STROKE | |
746 (#xD1 ?\u0145) ;; LATIN CAPITAL LETTER N WITH CEDILLA | |
747 (#xD2 ?\u014C) ;; LATIN CAPITAL LETTER O WITH MACRON | |
748 (#xD3 ?\u0136) ;; LATIN CAPITAL LETTER K WITH CEDILLA | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
749 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
750 (#xD5 ?\u00D5) ;; LATIN CAPITAL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
751 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
752 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
753 (#xD8 ?\u00D8) ;; LATIN CAPITAL LETTER O WITH STROKE |
4299 | 754 (#xD9 ?\u0172) ;; LATIN CAPITAL LETTER U WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
755 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
756 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
757 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
4299 | 758 (#xDD ?\u0168) ;; LATIN CAPITAL LETTER U WITH TILDE |
759 (#xDE ?\u016A) ;; LATIN CAPITAL LETTER U WITH MACRON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
760 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
4299 | 761 (#xE0 ?\u0101) ;; LATIN SMALL LETTER A WITH MACRON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
762 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
763 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
764 (#xE3 ?\u00E3) ;; LATIN SMALL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
765 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
766 (#xE5 ?\u00E5) ;; LATIN SMALL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
767 (#xE6 ?\u00E6) ;; LATIN SMALL LETTER AE |
4299 | 768 (#xE7 ?\u012F) ;; LATIN SMALL LETTER I WITH OGONEK |
769 (#xE8 ?\u010D) ;; LATIN SMALL LETTER C WITH CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
770 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
4299 | 771 (#xEA ?\u0119) ;; LATIN SMALL LETTER E WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
772 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
4299 | 773 (#xEC ?\u0117) ;; LATIN SMALL LETTER E WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
774 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
775 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
4299 | 776 (#xEF ?\u012B) ;; LATIN SMALL LETTER I WITH MACRON |
777 (#xF0 ?\u0111) ;; LATIN SMALL LETTER D WITH STROKE | |
778 (#xF1 ?\u0146) ;; LATIN SMALL LETTER N WITH CEDILLA | |
779 (#xF2 ?\u014D) ;; LATIN SMALL LETTER O WITH MACRON | |
780 (#xF3 ?\u0137) ;; LATIN SMALL LETTER K WITH CEDILLA | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
781 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
782 (#xF5 ?\u00F5) ;; LATIN SMALL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
783 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
784 (#xF7 ?\u00F7) ;; DIVISION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
785 (#xF8 ?\u00F8) ;; LATIN SMALL LETTER O WITH STROKE |
4299 | 786 (#xF9 ?\u0173) ;; LATIN SMALL LETTER U WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
787 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
788 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
789 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
4299 | 790 (#xFD ?\u0169) ;; LATIN SMALL LETTER U WITH TILDE |
791 (#xFE ?\u016B) ;; LATIN SMALL LETTER U WITH MACRON | |
792 (#xFF ?\u02D9));; DOT ABOVE | |
793 "ISO-8859-4 (Latin-4)" | |
794 '(mnemonic "Latin 4" | |
795 aliases (iso-latin-4 latin-4) | |
796 documentation "Obsolete coding system for the Baltic rim. ")) | |
3767 | 797 |
798 | |
799 ;; Latin-8 (ISO 8859-14) Celtic. | |
800 | |
801 ;; Never widely used. Current-orthography Gaelic, both Irish and Scots, is | |
802 ;; easily written with Latin-1. Wikipedia says the same about Welsh. | |
803 | |
804 (make-charset 'latin-iso8859-14 | |
805 "Right-Hand Part of Latin Alphabet 8 (ISO/IEC 8859-14)" | |
806 '(dimension 1 | |
807 registries ["ISO8859-14"] | |
808 chars 96 | |
809 columns 1 | |
810 direction l2r | |
811 final ?_ | |
812 graphic 1 | |
813 short-name "RHP of Latin-8" | |
814 long-name "RHP of Latin-8 (ISO 8859-14)")) | |
464 | 815 |
3767 | 816 ;; |
817 ;; Character syntax defaults to word. The exceptions here shared with Latin-1. | |
818 (dolist (code '(#xa0 ;; NO BREAK SPACE | |
819 #xa3 ;; POUND SIGN | |
820 #xa7 ;; SECTION SIGN | |
821 #xa9 ;; COPYRIGHT | |
822 #xad ;; SOFT HYPHEN | |
823 #xae ;; REGISTERED | |
824 #xb6)) ;; PILCROW SIGN | |
825 (modify-syntax-entry (make-char 'latin-iso8859-14 code) | |
826 (string (char-syntax (make-char 'latin-iso8859-1 code))) | |
827 (standard-syntax-table))) | |
828 ;; Case. | |
829 (setup-case-pairs | |
830 'latin-iso8859-14 | |
831 '((#xA1 #xA2) ;; B WITH DOT ABOVE | |
832 (#xA4 #xA5) ;; C WITH DOT ABOVE | |
833 (#xA6 #xAB) ;; D WITH DOT ABOVE | |
834 (#xA8 #xB8) ;; W WITH GRAVE | |
835 (#xAA #xBA) ;; W WITH ACUTE | |
836 (#xAC #xBC) ;; Y WITH GRAVE | |
837 (#xAF #xFF) ;; Y WITH DIAERESIS | |
838 (#xB0 #xB1) ;; F WITH DOT ABOVE | |
839 (#xB2 #xB3) ;; G WITH DOT ABOVE | |
840 (#xB4 #xB5) ;; M WITH DOT ABOVE | |
841 (#xB7 #xB9) ;; P WITH DOT ABOVE | |
842 (#xBB #xBF) ;; S WITH DOT ABOVE | |
843 (#xBD #xBE) ;; W WITH DIAERESIS | |
844 (#xC0 #xE0) ;; A WITH GRAVE | |
845 (#xC1 #xE1) ;; A WITH ACUTE | |
846 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
847 (#xC3 #xE3) ;; A WITH TILDE | |
848 (#xC4 #xE4) ;; A WITH DIAERESIS | |
849 (#xC5 #xE5) ;; A WITH RING ABOVE | |
850 (#xC6 #xE6) ;; AE | |
851 (#xC7 #xE7) ;; C WITH CEDILLA | |
852 (#xC8 #xE8) ;; E WITH GRAVE | |
853 (#xC9 #xE9) ;; E WITH ACUTE | |
854 (#xCA #xEA) ;; E WITH CIRCUMFLEX | |
855 (#xCB #xEB) ;; E WITH DIAERESIS | |
856 (#xCC #xEC) ;; I WITH GRAVE | |
857 (#xCD #xED) ;; I WITH ACUTE | |
858 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
859 (#xCF #xEF) ;; I WITH DIAERESIS | |
860 (#xD0 #xF0) ;; W WITH CIRCUMFLEX | |
861 (#xD1 #xF1) ;; N WITH TILDE | |
862 (#xD2 #xF2) ;; O WITH GRAVE | |
863 (#xD3 #xF3) ;; O WITH ACUTE | |
864 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
865 (#xD5 #xF5) ;; O WITH TILDE | |
866 (#xD6 #xF6) ;; O WITH DIAERESIS | |
867 (#xD7 #xF7) ;; T WITH DOT ABOVE | |
868 (#xD8 #xF8) ;; O WITH STROKE | |
869 (#xD9 #xF9) ;; U WITH GRAVE | |
870 (#xDA #xFA) ;; U WITH ACUTE | |
871 (#xDB #xFB) ;; U WITH CIRCUMFLEX | |
872 (#xDC #xFC) ;; U WITH DIAERESIS | |
873 (#xDD #xFD) ;; Y WITH ACUTE | |
874 (#xDE #xFE))) ;; Y WITH CIRCUMFLEX | |
464 | 875 |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
876 (make-8-bit-coding-system |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
877 'iso-8859-14 |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
878 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
879 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
880 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
881 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
882 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
883 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
884 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
885 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
886 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
887 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
888 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
889 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
890 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
891 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
892 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
893 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
894 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
895 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
896 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
897 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
898 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
899 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
900 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
901 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
902 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
903 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
904 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
905 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
906 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
907 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
908 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
909 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
910 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
911 (#xA1 ?\u1E02) ;; LATIN CAPITAL LETTER B WITH DOT ABOVE |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
912 (#xA2 ?\u1E03) ;; LATIN SMALL LETTER B WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
913 (#xA3 ?\u00A3) ;; POUND SIGN |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
914 (#xA4 ?\u010A) ;; LATIN CAPITAL LETTER C WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
915 (#xA5 ?\u010B) ;; LATIN SMALL LETTER C WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
916 (#xA6 ?\u1E0A) ;; LATIN CAPITAL LETTER D WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
917 (#xA7 ?\u00A7) ;; SECTION SIGN |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
918 (#xA8 ?\u1E80) ;; LATIN CAPITAL LETTER W WITH GRAVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
919 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
920 (#xAA ?\u1E82) ;; LATIN CAPITAL LETTER W WITH ACUTE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
921 (#xAB ?\u1E0B) ;; LATIN SMALL LETTER D WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
922 (#xAC ?\u1EF2) ;; LATIN CAPITAL LETTER Y WITH GRAVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
923 (#xAD ?\u00AD) ;; SOFT HYPHEN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
924 (#xAE ?\u00AE) ;; REGISTERED SIGN |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
925 (#xAF ?\u0178) ;; LATIN CAPITAL LETTER Y WITH DIAERESIS |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
926 (#xB0 ?\u1E1E) ;; LATIN CAPITAL LETTER F WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
927 (#xB1 ?\u1E1F) ;; LATIN SMALL LETTER F WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
928 (#xB2 ?\u0120) ;; LATIN CAPITAL LETTER G WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
929 (#xB3 ?\u0121) ;; LATIN SMALL LETTER G WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
930 (#xB4 ?\u1E40) ;; LATIN CAPITAL LETTER M WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
931 (#xB5 ?\u1E41) ;; LATIN SMALL LETTER M WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
932 (#xB6 ?\u00B6) ;; PILCROW SIGN |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
933 (#xB7 ?\u1E56) ;; LATIN CAPITAL LETTER P WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
934 (#xB8 ?\u1E81) ;; LATIN SMALL LETTER W WITH GRAVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
935 (#xB9 ?\u1E57) ;; LATIN SMALL LETTER P WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
936 (#xBA ?\u1E83) ;; LATIN SMALL LETTER W WITH ACUTE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
937 (#xBB ?\u1E60) ;; LATIN CAPITAL LETTER S WITH DOT ABOVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
938 (#xBC ?\u1EF3) ;; LATIN SMALL LETTER Y WITH GRAVE |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
939 (#xBD ?\u1E84) ;; LATIN CAPITAL LETTER W WITH DIAERESIS |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
940 (#xBE ?\u1E85) ;; LATIN SMALL LETTER W WITH DIAERESIS |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
941 (#xBF ?\u1E61) ;; LATIN SMALL LETTER S WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
942 (#xC0 ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
943 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
944 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
945 (#xC3 ?\u00C3) ;; LATIN CAPITAL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
946 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
947 (#xC5 ?\u00C5) ;; LATIN CAPITAL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
948 (#xC6 ?\u00C6) ;; LATIN CAPITAL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
949 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
950 (#xC8 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
951 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
952 (#xCA ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
953 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
954 (#xCC ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
955 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
956 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
957 (#xCF ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
958 (#xD0 ?\u0174) ;; LATIN CAPITAL LETTER W WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
959 (#xD1 ?\u00D1) ;; LATIN CAPITAL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
960 (#xD2 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
961 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
962 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
963 (#xD5 ?\u00D5) ;; LATIN CAPITAL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
964 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
965 (#xD7 ?\u1E6A) ;; LATIN CAPITAL LETTER T WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
966 (#xD8 ?\u00D8) ;; LATIN CAPITAL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
967 (#xD9 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
968 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
969 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
970 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
971 (#xDD ?\u00DD) ;; LATIN CAPITAL LETTER Y WITH ACUTE |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
972 (#xDE ?\u0176) ;; LATIN CAPITAL LETTER Y WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
973 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
974 (#xE0 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
975 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
976 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
977 (#xE3 ?\u00E3) ;; LATIN SMALL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
978 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
979 (#xE5 ?\u00E5) ;; LATIN SMALL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
980 (#xE6 ?\u00E6) ;; LATIN SMALL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
981 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
982 (#xE8 ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
983 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
984 (#xEA ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
985 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
986 (#xEC ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
987 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
988 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
989 (#xEF ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
990 (#xF0 ?\u0175) ;; LATIN SMALL LETTER W WITH CIRCUMFLEX |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
991 (#xF1 ?\u00F1) ;; LATIN SMALL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
992 (#xF2 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
993 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
994 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
995 (#xF5 ?\u00F5) ;; LATIN SMALL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
996 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
997 (#xF7 ?\u1E6B) ;; LATIN SMALL LETTER T WITH DOT ABOVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
998 (#xF8 ?\u00F8) ;; LATIN SMALL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
999 (#xF9 ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1000 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1001 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1002 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1003 (#xFD ?\u00FD) ;; LATIN SMALL LETTER Y WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1004 (#xFE ?\u0177) ;; LATIN SMALL LETTER Y WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1005 (#xFF ?\u00FF)) ;; LATIN SMALL LETTER Y WITH DIAERESIS |
4568
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
1006 "ISO-8859-14 (Latin-8)" |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
1007 '(mnemonic "Latin 8" |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
1008 aliases (iso-latin-8 latin-8))) |
1d74a1d115ee
Add #'query-coding-region tests; do the work necessary to get them running.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4490
diff
changeset
|
1009 |
3767 | 1010 |
1011 ;; The syntax table code for ISO 8859-15 and ISO 8859-16 requires that the | |
1012 ;; guillemets not have parenthesis syntax, which they used to have in the | |
1013 ;; past. See syntax.c:complex_vars_of_syntax. | |
1014 (assert (not (memq (char-syntax (make-char 'latin-iso8859-1 #xAB)) '(?\( ?\)))) | |
1015 t "This code assumes \xAB does not have parenthesis syntax. ") | |
1016 | |
1017 (assert (not (memq (char-syntax (make-char 'latin-iso8859-1 #xBB)) '(?\( ?\)))) | |
1018 t "This code assumes \xBB does not have parenthesis syntax. ") | |
1019 | |
1020 | |
1021 ;; Latin-9 (ISO-8859-15) | |
1022 ;; | |
1023 ;; Latin-1 plus Euro, plus a few accented characters for the sake of correct | |
1024 ;; Finnish and French orthography. Only ever widely used on Unix. | |
2765 | 1025 |
3767 | 1026 ;; |
1027 ;; Based on Latin-1 and differences therefrom. | |
1028 ;; | |
1029 ;; First, initialise the syntax from the corresponding Latin-1 characters. | |
1030 (loop | |
1031 for c from #xa0 to #xff | |
1032 with syntax-table = (standard-syntax-table) | |
1033 do (modify-syntax-entry | |
1034 (make-char 'latin-iso8859-15 c) | |
1035 (string (char-syntax (make-char 'latin-iso8859-1 c))) | |
1036 syntax-table)) | |
1037 | |
1038 ;; Now, the exceptions. The Euro sign retains the syntax of CURRENCY SIGN. | |
1039 (loop | |
1040 for c in '(?,b&(B ?,b((B ?,b4(B ?,b8(B ?,b<(B ?,b=(B ?,b>(B) | |
1041 with syntax-table = (standard-syntax-table) | |
1042 do (modify-syntax-entry c "w" syntax-table)) | |
1043 | |
1044 ;; Case. | |
2765 | 1045 (setup-case-pairs |
1046 'latin-iso8859-15 | |
3767 | 1047 '((#xA6 #xA8) ;; S WITH CARON * |
1048 (#xB4 #xB8) ;; Z WITH CARON * | |
1049 (#xBC #xBD) ;; LATIN LIGATURE OE * | |
1050 (#xBE #xFF) ;; Y WITH DIAERESIS * | |
1051 (#xC0 #xE0) ;; A WITH GRAVE | |
1052 (#xC1 #xE1) ;; A WITH ACUTE | |
1053 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
1054 (#xC3 #xE3) ;; A WITH TILDE | |
1055 (#xC4 #xE4) ;; A WITH DIAERESIS | |
1056 (#xC5 #xE5) ;; A WITH RING ABOVE | |
1057 (#xC6 #xE6) ;; AE | |
1058 (#xC7 #xE7) ;; C WITH CEDILLA | |
1059 (#xC8 #xE8) ;; E WITH GRAVE | |
1060 (#xC9 #xE9) ;; E WITH ACUTE | |
1061 (#xCA #xEA) ;; E WITH CIRCUMFLEX | |
1062 (#xCB #xEB) ;; E WITH DIAERESIS | |
1063 (#xCC #xEC) ;; I WITH GRAVE | |
1064 (#xCD #xED) ;; I WITH ACUTE | |
1065 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
1066 (#xCF #xEF) ;; I WITH DIAERESIS | |
1067 (#xD0 #xF0) ;; ETH | |
1068 (#xD1 #xF1) ;; N WITH TILDE | |
1069 (#xD2 #xF2) ;; O WITH GRAVE | |
1070 (#xD3 #xF3) ;; O WITH ACUTE | |
1071 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
1072 (#xD5 #xF5) ;; O WITH TILDE | |
1073 (#xD6 #xF6) ;; O WITH DIAERESIS | |
1074 (#xD8 #xF8) ;; O WITH STROKE | |
1075 (#xD9 #xF9) ;; U WITH GRAVE | |
1076 (#xDA #xFA) ;; U WITH ACUTE | |
1077 (#xDB #xFB) ;; U WITH CIRCUMFLEX | |
1078 (#xDC #xFC) ;; U WITH DIAERESIS | |
1079 (#xDD #xFD) ;; Y WITH ACUTE | |
1080 (#xDE #xFE))) ;; THORN | |
1081 | |
4299 | 1082 (make-8-bit-coding-system |
1083 'iso-8859-15 | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1084 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1085 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1086 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1087 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1088 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1089 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1090 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1091 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1092 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1093 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1094 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1095 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1096 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1097 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1098 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1099 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1100 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1101 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1102 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1103 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1104 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1105 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1106 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1107 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1108 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1109 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1110 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1111 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1112 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1113 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1114 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1115 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1116 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1117 (#xA1 ?\u00A1) ;; INVERTED EXCLAMATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1118 (#xA2 ?\u00A2) ;; CENT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1119 (#xA3 ?\u00A3) ;; POUND SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1120 (#xA4 ?\u20AC) ;; EURO SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1121 (#xA5 ?\u00A5) ;; YEN SIGN |
4299 | 1122 (#xA6 ?\u0160) ;; LATIN CAPITAL LETTER S WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1123 (#xA7 ?\u00A7) ;; SECTION SIGN |
4299 | 1124 (#xA8 ?\u0161) ;; LATIN SMALL LETTER S WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1125 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1126 (#xAA ?\u00AA) ;; FEMININE ORDINAL INDICATOR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1127 (#xAB ?\u00AB) ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1128 (#xAC ?\u00AC) ;; NOT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1129 (#xAD ?\u00AD) ;; SOFT HYPHEN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1130 (#xAE ?\u00AE) ;; REGISTERED SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1131 (#xAF ?\u00AF) ;; MACRON |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1132 (#xB0 ?\u00B0) ;; DEGREE SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1133 (#xB1 ?\u00B1) ;; PLUS-MINUS SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1134 (#xB2 ?\u00B2) ;; SUPERSCRIPT TWO |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1135 (#xB3 ?\u00B3) ;; SUPERSCRIPT THREE |
4299 | 1136 (#xB4 ?\u017D) ;; LATIN CAPITAL LETTER Z WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1137 (#xB5 ?\u00B5) ;; MICRO SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1138 (#xB6 ?\u00B6) ;; PILCROW SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1139 (#xB7 ?\u00B7) ;; MIDDLE DOT |
4299 | 1140 (#xB8 ?\u017E) ;; LATIN SMALL LETTER Z WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1141 (#xB9 ?\u00B9) ;; SUPERSCRIPT ONE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1142 (#xBA ?\u00BA) ;; MASCULINE ORDINAL INDICATOR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1143 (#xBB ?\u00BB) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK |
4299 | 1144 (#xBC ?\u0152) ;; LATIN CAPITAL LIGATURE OE |
1145 (#xBD ?\u0153) ;; LATIN SMALL LIGATURE OE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1146 (#xBE ?\u0178) ;; LATIN CAPITAL LETTER Y WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1147 (#xBF ?\u00BF) ;; INVERTED QUESTION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1148 (#xC0 ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1149 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1150 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1151 (#xC3 ?\u00C3) ;; LATIN CAPITAL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1152 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1153 (#xC5 ?\u00C5) ;; LATIN CAPITAL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1154 (#xC6 ?\u00C6) ;; LATIN CAPITAL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1155 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1156 (#xC8 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1157 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1158 (#xCA ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1159 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1160 (#xCC ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1161 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1162 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1163 (#xCF ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1164 (#xD0 ?\u00D0) ;; LATIN CAPITAL LETTER ETH |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1165 (#xD1 ?\u00D1) ;; LATIN CAPITAL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1166 (#xD2 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1167 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1168 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1169 (#xD5 ?\u00D5) ;; LATIN CAPITAL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1170 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1171 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1172 (#xD8 ?\u00D8) ;; LATIN CAPITAL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1173 (#xD9 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1174 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1175 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1176 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1177 (#xDD ?\u00DD) ;; LATIN CAPITAL LETTER Y WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1178 (#xDE ?\u00DE) ;; LATIN CAPITAL LETTER THORN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1179 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1180 (#xE0 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1181 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1182 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1183 (#xE3 ?\u00E3) ;; LATIN SMALL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1184 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1185 (#xE5 ?\u00E5) ;; LATIN SMALL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1186 (#xE6 ?\u00E6) ;; LATIN SMALL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1187 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1188 (#xE8 ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1189 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1190 (#xEA ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1191 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1192 (#xEC ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1193 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1194 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1195 (#xEF ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1196 (#xF0 ?\u00F0) ;; LATIN SMALL LETTER ETH |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1197 (#xF1 ?\u00F1) ;; LATIN SMALL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1198 (#xF2 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1199 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1200 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1201 (#xF5 ?\u00F5) ;; LATIN SMALL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1202 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1203 (#xF7 ?\u00F7) ;; DIVISION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1204 (#xF8 ?\u00F8) ;; LATIN SMALL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1205 (#xF9 ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1206 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1207 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1208 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1209 (#xFD ?\u00FD) ;; LATIN SMALL LETTER Y WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1210 (#xFE ?\u00FE) ;; LATIN SMALL LETTER THORN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1211 (#xFF ?\u00FF)) ;; LATIN SMALL LETTER Y WITH DIAERESIS |
4299 | 1212 "ISO 4873 conforming 8-bit code (ASCII + Latin 9; aka Latin-1 with Euro)" |
1213 '(mnemonic "Latin 9" | |
1214 aliases (iso-latin-9 latin-9 latin-0))) | |
2765 | 1215 |
3767 | 1216 ;; end of ISO 8859-15. |
1217 | |
1218 ;; | |
1219 ;; Latin-10 (ISO 8859-16). | |
1220 ;; | |
1221 ;; "South-Eastern European." Not, to my knowledge, ever widely used. | |
1222 | |
1223 (make-charset 'latin-iso8859-16 | |
1224 "Right-Hand Part of Latin Alphabet 10 (ISO/IEC 8859-16)" | |
1225 '(dimension 1 | |
1226 registries ["ISO8859-16"] | |
1227 chars 96 | |
1228 columns 1 | |
1229 direction l2r | |
1230 final ?f ; octet 06/06; cf ISO-IR 226 | |
1231 graphic 1 | |
1232 short-name "RHP of Latin-10" | |
1233 long-name "RHP of Latin-10 (ISO 8859-16)")) | |
2765 | 1234 |
3767 | 1235 ;; Copy over the non-word syntax this charset has in common with Latin 1. |
1236 (dolist (code '(#xa0 ;; NO BREAK SPACE | |
1237 #xa7 ;; SECTION SIGN | |
1238 #xa9 ;; COPYRIGHT | |
1239 #xab ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK | |
1240 #xad ;; SOFT HYPHEN | |
1241 #xb0 ;; DEGREE | |
1242 #xb1 ;; PLUS-MINUS SIGN | |
1243 #xb6 ;; PILCROW SIGN | |
1244 #xb7 ;; MIDDLE DOT | |
1245 #xbb)) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK | |
1246 (modify-syntax-entry (make-char 'latin-iso8859-16 code) | |
1247 (string (char-syntax (make-char 'latin-iso8859-1 code))) | |
1248 (standard-syntax-table))) | |
1249 | |
1250 ;; EURO SIGN. Take its syntax from the pound sign. | |
1251 (modify-syntax-entry (make-char 'latin-iso8859-16 #xa4) | |
1252 (string (char-syntax (make-char 'latin-iso8859-1 #xa3))) | |
1253 (standard-syntax-table)) | |
1254 | |
1255 ;; Take DOUBLE LOW-9 QUOTATION MARK's syntax from that of LEFT-POINTING | |
1256 ;; DOUBLE ANGLE QUOTATION MARK. | |
1257 (modify-syntax-entry (make-char 'latin-iso8859-16 #xa5) | |
1258 (string (char-syntax (make-char 'latin-iso8859-1 #xab))) | |
1259 (standard-syntax-table)) | |
1260 | |
1261 ;; Take RIGHT DOUBLE QUOTATION MARK's syntax from that of RIGHT-POINTING | |
1262 ;; DOUBLE ANGLE QUOTATION MARK. | |
1263 (modify-syntax-entry (make-char 'latin-iso8859-16 #xb5) | |
1264 (string (char-syntax (make-char 'latin-iso8859-1 #xbb))) | |
1265 (standard-syntax-table)) | |
1266 | |
1267 ;; Case. | |
2765 | 1268 (setup-case-pairs |
1269 'latin-iso8859-16 | |
3767 | 1270 '((#xA1 #xA2) ;; A WITH OGONEK |
1271 (#xA3 #xB3) ;; L WITH STROKE | |
1272 (#xA6 #xA8) ;; S WITH CARON | |
1273 (#xAA #xBA) ;; S WITH COMMA BELOW | |
1274 (#xAC #xAE) ;; Z WITH ACUTE | |
1275 (#xAF #xBF) ;; Z WITH DOT ABOVE | |
1276 (#xB2 #xB9) ;; C WITH CARON | |
1277 (#xB4 #xB8) ;; Z WITH CARON | |
1278 (#xBE #xFF) ;; Y WITH DIAERESIS | |
1279 (#xC0 #xE0) ;; A WITH GRAVE | |
1280 (#xC1 #xE1) ;; A WITH ACUTE | |
1281 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
1282 (#xC3 #xE3) ;; A WITH BREVE | |
1283 (#xC4 #xE4) ;; A WITH DIAERESIS | |
1284 (#xC5 #xE5) ;; C WITH ACUTE | |
1285 (#xC6 #xE6) ;; AE | |
1286 (#xC7 #xE7) ;; C WITH CEDILLA | |
1287 (#xC8 #xE8) ;; E WITH GRAVE | |
1288 (#xC9 #xE9) ;; E WITH ACUTE | |
1289 (#xCA #xEA) ;; E WITH CIRCUMFLEX | |
1290 (#xCB #xEB) ;; E WITH DIAERESIS | |
1291 (#xCC #xEC) ;; I WITH GRAVE | |
1292 (#xCD #xED) ;; I WITH ACUTE | |
1293 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
1294 (#xCF #xEF) ;; I WITH DIAERESIS | |
1295 (#xD0 #xF0) ;; D WITH STROKE | |
1296 (#xD1 #xF1) ;; N WITH ACUTE | |
1297 (#xD2 #xF2) ;; O WITH GRAVE | |
1298 (#xD3 #xF3) ;; O WITH ACUTE | |
1299 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
1300 (#xD5 #xF5) ;; O WITH DOUBLE ACUTE | |
1301 (#xD6 #xF6) ;; O WITH DIAERESIS | |
1302 (#xD7 #xF7) ;; S WITH ACUTE | |
1303 (#xD8 #xF8) ;; U WITH DOUBLE ACUTE | |
1304 (#xD9 #xF9) ;; U WITH GRAVE | |
1305 (#xDA #xFA) ;; U WITH ACUTE | |
1306 (#xDB #xFB) ;; U WITH CIRCUMFLEX | |
1307 (#xDC #xFC) ;; U WITH DIAERESIS | |
1308 (#xDD #xFD) ;; E WITH OGONEK | |
1309 (#xDE #xFE))) ;; T WITH COMMA BELOW | |
1310 | |
1311 ;; Add a coding system for ISO 8859-16. | |
4299 | 1312 (make-8-bit-coding-system |
1313 'iso-8859-16 | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1314 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1315 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1316 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1317 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1318 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1319 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1320 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1321 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1322 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1323 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1324 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1325 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1326 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1327 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1328 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1329 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1330 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1331 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1332 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1333 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1334 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1335 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1336 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1337 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1338 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1339 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1340 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1341 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1342 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1343 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1344 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1345 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1346 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1347 (#xA1 ?\u0104) ;; LATIN CAPITAL LETTER A WITH OGONEK |
4299 | 1348 (#xA2 ?\u0105) ;; LATIN SMALL LETTER A WITH OGONEK |
1349 (#xA3 ?\u0141) ;; LATIN CAPITAL LETTER L WITH STROKE | |
1350 (#xA4 ?\u20AC) ;; EURO SIGN | |
1351 (#xA5 ?\u201E) ;; DOUBLE LOW-9 QUOTATION MARK | |
1352 (#xA6 ?\u0160) ;; LATIN CAPITAL LETTER S WITH CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1353 (#xA7 ?\u00A7) ;; SECTION SIGN |
4299 | 1354 (#xA8 ?\u0161) ;; LATIN SMALL LETTER S WITH CARON |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1355 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN |
4299 | 1356 (#xAA ?\u0218) ;; LATIN CAPITAL LETTER S WITH COMMA BELOW |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1357 (#xAB ?\u00AB) ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK |
4299 | 1358 (#xAC ?\u0179) ;; LATIN CAPITAL LETTER Z WITH ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1359 (#xAD ?\u00AD) ;; SOFT HYPHEN |
4299 | 1360 (#xAE ?\u017A) ;; LATIN SMALL LETTER Z WITH ACUTE |
1361 (#xAF ?\u017B) ;; LATIN CAPITAL LETTER Z WITH DOT ABOVE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1362 (#xB0 ?\u00B0) ;; DEGREE SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1363 (#xB1 ?\u00B1) ;; PLUS-MINUS SIGN |
4299 | 1364 (#xB2 ?\u010C) ;; LATIN CAPITAL LETTER C WITH CARON |
1365 (#xB3 ?\u0142) ;; LATIN SMALL LETTER L WITH STROKE | |
1366 (#xB4 ?\u017D) ;; LATIN CAPITAL LETTER Z WITH CARON | |
1367 (#xB5 ?\u201D) ;; RIGHT DOUBLE QUOTATION MARK | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1368 (#xB6 ?\u00B6) ;; PILCROW SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1369 (#xB7 ?\u00B7) ;; MIDDLE DOT |
4299 | 1370 (#xB8 ?\u017E) ;; LATIN SMALL LETTER Z WITH CARON |
1371 (#xB9 ?\u010D) ;; LATIN SMALL LETTER C WITH CARON | |
1372 (#xBA ?\u0219) ;; LATIN SMALL LETTER S WITH COMMA BELOW | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1373 (#xBB ?\u00BB) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK |
4299 | 1374 (#xBC ?\u0152) ;; LATIN CAPITAL LIGATURE OE |
1375 (#xBD ?\u0153) ;; LATIN SMALL LIGATURE OE | |
1376 (#xBE ?\u0178) ;; LATIN CAPITAL LETTER Y WITH DIAERESIS | |
1377 (#xBF ?\u017C) ;; LATIN SMALL LETTER Z WITH DOT ABOVE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1378 (#xC0 ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1379 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1380 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
4299 | 1381 (#xC3 ?\u0102) ;; LATIN CAPITAL LETTER A WITH BREVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1382 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
4299 | 1383 (#xC5 ?\u0106) ;; LATIN CAPITAL LETTER C WITH ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1384 (#xC6 ?\u00C6) ;; LATIN CAPITAL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1385 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1386 (#xC8 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1387 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1388 (#xCA ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1389 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1390 (#xCC ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1391 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1392 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1393 (#xCF ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS |
4299 | 1394 (#xD0 ?\u0110) ;; LATIN CAPITAL LETTER D WITH STROKE |
1395 (#xD1 ?\u0143) ;; LATIN CAPITAL LETTER N WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1396 (#xD2 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1397 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1398 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
4299 | 1399 (#xD5 ?\u0150) ;; LATIN CAPITAL LETTER O WITH DOUBLE ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1400 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
4299 | 1401 (#xD7 ?\u015A) ;; LATIN CAPITAL LETTER S WITH ACUTE |
1402 (#xD8 ?\u0170) ;; LATIN CAPITAL LETTER U WITH DOUBLE ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1403 (#xD9 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1404 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1405 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1406 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
4299 | 1407 (#xDD ?\u0118) ;; LATIN CAPITAL LETTER E WITH OGONEK |
1408 (#xDE ?\u021A) ;; LATIN CAPITAL LETTER T WITH COMMA BELOW | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1409 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1410 (#xE0 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1411 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1412 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
4299 | 1413 (#xE3 ?\u0103) ;; LATIN SMALL LETTER A WITH BREVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1414 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
4299 | 1415 (#xE5 ?\u0107) ;; LATIN SMALL LETTER C WITH ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1416 (#xE6 ?\u00E6) ;; LATIN SMALL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1417 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1418 (#xE8 ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1419 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1420 (#xEA ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1421 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1422 (#xEC ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1423 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1424 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1425 (#xEF ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS |
4299 | 1426 (#xF0 ?\u0111) ;; LATIN SMALL LETTER D WITH STROKE |
1427 (#xF1 ?\u0144) ;; LATIN SMALL LETTER N WITH ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1428 (#xF2 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1429 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1430 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
4299 | 1431 (#xF5 ?\u0151) ;; LATIN SMALL LETTER O WITH DOUBLE ACUTE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1432 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
4299 | 1433 (#xF7 ?\u015B) ;; LATIN SMALL LETTER S WITH ACUTE |
1434 (#xF8 ?\u0171) ;; LATIN SMALL LETTER U WITH DOUBLE ACUTE | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1435 (#xF9 ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1436 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1437 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1438 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
4299 | 1439 (#xFD ?\u0119) ;; LATIN SMALL LETTER E WITH OGONEK |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1440 (#xFE ?\u021B) ;; LATIN SMALL LETTER T WITH COMMA BELOW |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1441 (#xFF ?\u00FF)) ;; LATIN SMALL LETTER Y WITH DIAERESIS |
4299 | 1442 "ISO-8859-16 (Latin-10)" |
1443 '(mnemonic "Latin 10" | |
1444 aliases (iso-latin-10))) | |
3767 | 1445 |
1446 ;; end of ISO 8859-16. | |
1447 | |
1448 | |
1449 (provide 'romanian) | |
1450 | |
1451 ;; Czech support originally from czech.el | |
1452 ;; Author: Milan Zamazal <pdm@zamazal.org> | |
1453 ;; Maintainer (FSF): Pavel Jan,Am(Bk <Pavel@Janik.cz> | |
1454 ;; Maintainer (for XEmacs): David Sauer <davids@penguin.cz> | |
1455 | |
1456 (provide 'czech) | |
1457 | |
1458 ;; Slovak support originally from slovak.el | |
1459 ;; Authors: Tibor ,B)(Bimko <tibor.simko@fmph.uniba.sk>, | |
1460 ;; Milan Zamazal <pdm@fi.muni.cz> | |
1461 ;; Maintainer: Milan Zamazal <pdm@fi.muni.cz> | |
1462 | |
1463 (provide 'slovenian) | |
1464 | |
1465 ;; Latin-5 (ISO-8859-9) | |
1466 | |
1467 ;; Turkish (more generally Turkic.) This is identical to Latin-1, with the | |
1468 ;; exception that the Icelandic-specific letters have been replaced by | |
1469 ;; Turkish-specific letters. As such, we can simply copy the Latin-1 syntax | |
1470 ;; table. | |
1471 | |
1472 (loop | |
1473 for i from #xA0 to #xFF | |
1474 with syntax-table = (standard-syntax-table) | |
1475 do (modify-syntax-entry | |
1476 (make-char 'latin-iso8859-9 i) | |
1477 (string (char-syntax (make-char 'latin-iso8859-1 i))) | |
1478 syntax-table)) | |
1479 | |
4145 | 1480 ;; Case. The Turkish case idiosyncracy is handled with its language environment. |
3767 | 1481 (setup-case-pairs |
1482 'latin-iso8859-9 | |
1483 '((#xC0 #xE0) ;; A WITH GRAVE | |
1484 (#xC1 #xE1) ;; A WITH ACUTE | |
1485 (#xC2 #xE2) ;; A WITH CIRCUMFLEX | |
1486 (#xC3 #xE3) ;; A WITH TILDE | |
1487 (#xC4 #xE4) ;; A WITH DIAERESIS | |
1488 (#xC5 #xE5) ;; A WITH RING ABOVE | |
1489 (#xC6 #xE6) ;; AE | |
1490 (#xC7 #xE7) ;; C WITH CEDILLA | |
1491 (#xC8 #xE8) ;; E WITH GRAVE | |
1492 (#xC9 #xE9) ;; E WITH ACUTE | |
1493 (#xCB #xEB) ;; E WITH DIAERESIS | |
1494 (#xCD #xED) ;; I WITH ACUTE | |
1495 (#xCE #xEE) ;; I WITH CIRCUMFLEX | |
1496 (#xD0 #xF0) ;; G WITH BREVE | |
1497 (#xD1 #xF1) ;; N WITH TILDE | |
1498 (#xD2 #xF2) ;; O WITH GRAVE | |
1499 (#xD3 #xF3) ;; O WITH ACUTE | |
1500 (#xD4 #xF4) ;; O WITH CIRCUMFLEX | |
1501 (#xD5 #xF5) ;; O WITH TILDE | |
1502 (#xD6 #xF6) ;; O WITH DIAERESIS | |
1503 (#xD8 #xF8) ;; O WITH STROKE | |
1504 (#xD9 #xF9) ;; U WITH GRAVE | |
1505 (#xDA #xFA) ;; U WITH ACUTE | |
1506 (#xDB #xFB) ;; U WITH CIRCUMFLEX | |
1507 (#xDC #xFC) ;; U WITH DIAERESIS | |
1508 (#xDE #xFE))) ;; S WITH CEDILLA | |
1509 | |
4145 | 1510 ;; LATIN CAPITAL LETTER I WITH DOT ABOVE |
1511 (put-case-table 'downcase | |
1512 (make-char 'latin-iso8859-9 #xdd) | |
1513 ?i (standard-case-table)) | |
1514 | |
1515 ;; LATIN SMALL LETTER DOTLESS I | |
1516 (put-case-table 'upcase | |
1517 (make-char 'latin-iso8859-9 #xfd) | |
1518 ?I (standard-case-table)) | |
1519 | |
4299 | 1520 (make-8-bit-coding-system |
1521 'iso-8859-9 | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1522 '((#x80 ?\u0080) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1523 (#x81 ?\u0081) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1524 (#x82 ?\u0082) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1525 (#x83 ?\u0083) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1526 (#x84 ?\u0084) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1527 (#x85 ?\u0085) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1528 (#x86 ?\u0086) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1529 (#x87 ?\u0087) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1530 (#x88 ?\u0088) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1531 (#x89 ?\u0089) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1532 (#x8A ?\u008A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1533 (#x8B ?\u008B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1534 (#x8C ?\u008C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1535 (#x8D ?\u008D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1536 (#x8E ?\u008E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1537 (#x8F ?\u008F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1538 (#x90 ?\u0090) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1539 (#x91 ?\u0091) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1540 (#x92 ?\u0092) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1541 (#x93 ?\u0093) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1542 (#x94 ?\u0094) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1543 (#x95 ?\u0095) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1544 (#x96 ?\u0096) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1545 (#x97 ?\u0097) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1546 (#x98 ?\u0098) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1547 (#x99 ?\u0099) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1548 (#x9A ?\u009A) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1549 (#x9B ?\u009B) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1550 (#x9C ?\u009C) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1551 (#x9D ?\u009D) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1552 (#x9E ?\u009E) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1553 (#x9F ?\u009F) ;; <control> |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1554 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1555 (#xA1 ?\u00A1) ;; INVERTED EXCLAMATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1556 (#xA2 ?\u00A2) ;; CENT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1557 (#xA3 ?\u00A3) ;; POUND SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1558 (#xA4 ?\u00A4) ;; CURRENCY SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1559 (#xA5 ?\u00A5) ;; YEN SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1560 (#xA6 ?\u00A6) ;; BROKEN BAR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1561 (#xA7 ?\u00A7) ;; SECTION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1562 (#xA8 ?\u00A8) ;; DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1563 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1564 (#xAA ?\u00AA) ;; FEMININE ORDINAL INDICATOR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1565 (#xAB ?\u00AB) ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1566 (#xAC ?\u00AC) ;; NOT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1567 (#xAD ?\u00AD) ;; SOFT HYPHEN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1568 (#xAE ?\u00AE) ;; REGISTERED SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1569 (#xAF ?\u00AF) ;; MACRON |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1570 (#xB0 ?\u00B0) ;; DEGREE SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1571 (#xB1 ?\u00B1) ;; PLUS-MINUS SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1572 (#xB2 ?\u00B2) ;; SUPERSCRIPT TWO |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1573 (#xB3 ?\u00B3) ;; SUPERSCRIPT THREE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1574 (#xB4 ?\u00B4) ;; ACUTE ACCENT |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1575 (#xB5 ?\u00B5) ;; MICRO SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1576 (#xB6 ?\u00B6) ;; PILCROW SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1577 (#xB7 ?\u00B7) ;; MIDDLE DOT |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1578 (#xB8 ?\u00B8) ;; CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1579 (#xB9 ?\u00B9) ;; SUPERSCRIPT ONE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1580 (#xBA ?\u00BA) ;; MASCULINE ORDINAL INDICATOR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1581 (#xBB ?\u00BB) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1582 (#xBC ?\u00BC) ;; VULGAR FRACTION ONE QUARTER |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1583 (#xBD ?\u00BD) ;; VULGAR FRACTION ONE HALF |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1584 (#xBE ?\u00BE) ;; VULGAR FRACTION THREE QUARTERS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1585 (#xBF ?\u00BF) ;; INVERTED QUESTION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1586 (#xC0 ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1587 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1588 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1589 (#xC3 ?\u00C3) ;; LATIN CAPITAL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1590 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1591 (#xC5 ?\u00C5) ;; LATIN CAPITAL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1592 (#xC6 ?\u00C6) ;; LATIN CAPITAL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1593 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1594 (#xC8 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1595 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1596 (#xCA ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1597 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1598 (#xCC ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1599 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1600 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1601 (#xCF ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1602 (#xD0 ?\u011E) ;; LATIN CAPITAL LETTER G WITH BREVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1603 (#xD1 ?\u00D1) ;; LATIN CAPITAL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1604 (#xD2 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1605 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1606 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1607 (#xD5 ?\u00D5) ;; LATIN CAPITAL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1608 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1609 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1610 (#xD8 ?\u00D8) ;; LATIN CAPITAL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1611 (#xD9 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1612 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1613 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1614 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
4299 | 1615 (#xDD ?\u0130) ;; LATIN CAPITAL LETTER I WITH DOT ABOVE |
1616 (#xDE ?\u015E) ;; LATIN CAPITAL LETTER S WITH CEDILLA | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1617 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1618 (#xE0 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1619 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1620 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1621 (#xE3 ?\u00E3) ;; LATIN SMALL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1622 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1623 (#xE5 ?\u00E5) ;; LATIN SMALL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1624 (#xE6 ?\u00E6) ;; LATIN SMALL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1625 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1626 (#xE8 ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1627 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1628 (#xEA ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1629 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1630 (#xEC ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1631 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1632 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1633 (#xEF ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS |
4299 | 1634 (#xF0 ?\u011F) ;; LATIN SMALL LETTER G WITH BREVE |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1635 (#xF1 ?\u00F1) ;; LATIN SMALL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1636 (#xF2 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1637 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1638 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1639 (#xF5 ?\u00F5) ;; LATIN SMALL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1640 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1641 (#xF7 ?\u00F7) ;; DIVISION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1642 (#xF8 ?\u00F8) ;; LATIN SMALL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1643 (#xF9 ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1644 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1645 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1646 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
4299 | 1647 (#xFD ?\u0131) ;; LATIN SMALL LETTER DOTLESS I |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1648 (#xFE ?\u015F) ;; LATIN SMALL LETTER S WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1649 (#xFF ?\u00FF)) ;; LATIN SMALL LETTER Y WITH DIAERESIS |
4299 | 1650 "ISO-8859-9 (Latin-5)" |
1651 '(mnemonic "Latin 5" | |
1652 aliases (iso-latin-5 latin-5))) | |
3767 | 1653 |
1654 ;; end of ISO-8859-9 | |
1655 | |
1656 ;; This is a utility function; we don't want it in the dumped XEmacs. | |
1657 | |
1658 (fmakunbound 'setup-case-pairs) | |
2765 | 1659 |
464 | 1660 |
3767 | 1661 ;; Language environments. |
1662 (loop | |
1663 for ((charset codesys default-input nice-charset-1 nice-charset-2 | |
1664 ;; supported-langs is a list if the doc string is replaced | |
1665 ;; entirely | |
4490
67fbcaf3dbdc
error-sequence -> invalid-sequence
Aidan Kehoe <kehoea@parhasard.net>
parents:
4489
diff
changeset
|
1666 supported-langs invalid-sequence-coding-system) |
3767 | 1667 langenvs) in |
1668 '(((latin-iso8859-1 iso-8859-1 "latin-1-prefix" "Latin-1" "ISO-8859-1" | |
1669 " Danish, Dutch, English, Faeroese, Finnish, French, German, Icelandic, | |
4489
b75b075a9041
Support displaying invalid UTF-8 in language-environment-specific ways.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4447
diff
changeset
|
1670 Irish, Italian, Norwegian, Portuguese, Spanish, and Swedish." |
b75b075a9041
Support displaying invalid UTF-8 in language-environment-specific ways.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4447
diff
changeset
|
1671 windows-1252) |
3767 | 1672 (("Danish" "da") |
1673 ("Dutch" "nl" "TUTORIAL.nl") | |
4090 | 1674 ("Faeroese" "fo") |
3767 | 1675 ("Finnish" "fi") |
1676 ("French" "fr" "TUTORIAL.fr" "Bonjour, ,Ag(Ba va?") | |
1677 ("German" "de" "TUTORIAL.de" "\ | |
1678 German (Deutsch Nord) Guten Tag | |
1679 German (Deutsch S,A|(Bd) Gr,A|_(B Gott" | |
1680 "german-postfix") | |
1681 ("Icelandic" "is") | |
1682 ("Irish" "ga") | |
1683 ("Italian" "it") | |
1684 ("Norwegian" "no" "TUTORIAL.no") | |
1685 ("Portuguese" "pt" nil "Bem-vindo! Tudo bem?") | |
1686 ("Spanish" "es" "TUTORIAL.es" ",A!(BHola!") | |
1687 ("Swedish" "sv" "TUTORIAL.se" "Hej!"))) | |
1688 ((latin-iso8859-15 iso-8859-15 "latin-1-prefix" ;; #### FIXME | |
1689 "Latin-9" "ISO-8859-15") | |
1690 ()) | |
1691 ((latin-iso8859-2 iso-8859-2 "latin-2-prefix" "Latin-2" "ISO-8859-2" | |
1692 " Albanian, Czech, English, German, Hungarian, Polish, Romanian, | |
1693 Serbian, Croatian, Slovak, Slovene, Sorbian (upper and lower), | |
4600
dcfd965d65a1
Correct invalid-sequence-coding-system spec, Roman-alphabet languages.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4568
diff
changeset
|
1694 and Swedish." windows-1250) |
4090 | 1695 (("Albanian" "sq") |
3767 | 1696 ("Croatian" ("hrvatski" "hr") "TUTORIAL.hr") |
1697 ("Czech" ("cs" "cz") "TUTORIAL.cs" "P,Bx(Bejeme v,Ba(Bm hezk,B}(B den!" | |
1698 "latin-2-postfix") | |
1699 ("Hungarian" ("hungarian" "hu")) | |
4240 | 1700 ("Polish" ("pl" "po") "TUTORIAL.pl") ;; #### Is "po" actually used? |
3767 | 1701 ("Romanian" "ro" "TUTORIAL.ro" "Bun,Bc(B ziua, bine a,B~(Bi venit!" |
1702 "latin-2-postfix") | |
1703 ("Serbian" "sr") | |
1704 ("Slovak" "sk" "TUTORIAL.sk" "Prajeme V,Ba(Bm pr,Bm(Bjemn,B}(B de,Br(B!" | |
1705 "latin-2-postfix") | |
1706 ("Slovenian" "sl" "TUTORIAL.sl" ",B.(Belimo vam uspe,B9(Ben dan!" | |
1707 "latin-2-postfix") | |
1708 ("Sorbian" nil))) | |
1709 ((latin-iso8859-3 iso-8859-3 "latin-3-prefix" "Latin-3" "ISO-8859-3" | |
1710 " Afrikaans, Catalan, Dutch, English, Esperanto, French, Galician, | |
1711 German, Italian, Maltese, Spanish, and Turkish.") | |
1712 (("Afrikaans" "af") | |
1713 ("Catalan" ("catalan" "ca")) | |
4090 | 1714 ("Esperanto" "eo") |
1715 ("Galician" "gl") | |
1716 ("Maltese" "mt"))) | |
3767 | 1717 ((latin-iso8859-4 iso-8859-4 "latin-4-prefix" "Latin-4" "ISO-8859-4" |
1718 " Danish, English, Estonian, Finnish, German, Greenlandic, Lappish, | |
1719 Latvian, Lithuanian, and Norwegian.") | |
1720 (("Estonian" "et") | |
4090 | 1721 ("Greenlandic" "kl") |
1722 ("Lappish" "se") | |
3767 | 1723 ("Latvian" "lv") |
1724 ("Lithuanian" "li"))) | |
3977 | 1725 ((latin-iso8859-9 iso-8859-9 "latin-5-prefix" "Latin-5" "ISO-8859-9") |
3767 | 1726 (("Turkish" "tr")))) |
1727 do | |
1728 (set-language-info-alist | |
1729 nice-charset-1 | |
1730 `((charset ascii ,charset) | |
1731 (coding-system ,codesys) | |
1732 (coding-priority ,codesys) | |
1733 (native-coding-system ,codesys) | |
4490
67fbcaf3dbdc
error-sequence -> invalid-sequence
Aidan Kehoe <kehoea@parhasard.net>
parents:
4489
diff
changeset
|
1734 (invalid-sequence-coding-system ,(or invalid-sequence-coding-system |
67fbcaf3dbdc
error-sequence -> invalid-sequence
Aidan Kehoe <kehoea@parhasard.net>
parents:
4489
diff
changeset
|
1735 codesys)) |
3767 | 1736 (documentation . ,(if (listp supported-langs) (car supported-langs) |
1737 (format "\ | |
1738 Generic language environment for %s (%s)." nice-charset-1 nice-charset-2)))) | |
1739 '("European")) | |
1740 (loop for (name locale tutorial sample-text input-method) in langenvs | |
1741 do | |
1742 (set-language-info-alist | |
1743 name | |
1744 `((charset ascii ,charset) | |
1745 (coding-system ,codesys) | |
1746 (coding-priority ,codesys) | |
1747 (native-coding-system ,codesys) | |
4600
dcfd965d65a1
Correct invalid-sequence-coding-system spec, Roman-alphabet languages.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4568
diff
changeset
|
1748 (invalid-sequence-coding-system ,(or invalid-sequence-coding-system |
dcfd965d65a1
Correct invalid-sequence-coding-system spec, Roman-alphabet languages.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4568
diff
changeset
|
1749 codesys)) |
3767 | 1750 ,@(if locale `((locale . ,locale))) |
4240 | 1751 ,@(if tutorial `((tutorial . ,tutorial) |
4325
948c9b232595
Avoid an error when clicking on Help -> Tutorials
Aidan Kehoe <kehoea@parhasard.net>
parents:
4316
diff
changeset
|
1752 (tutorial-coding-system . ,codesys))) |
3767 | 1753 ,@(if sample-text `((sample-text . ,sample-text))) |
1754 (input-method . ,(or input-method default-input)) | |
1755 (documentation . ,(format "\ | |
1756 This language environment supports %s. " name))) | |
1757 '("European")))) | |
464 | 1758 |
4145 | 1759 ;; The case table for Turkish is special: |
1760 ;; #### Maybe we should limit this change to interactive functions; this may | |
1761 ;; well be awkward for protocols and so on. | |
1762 (set-language-info "Turkish" | |
1763 'setup-function | |
1764 (lambda () | |
1765 ;; The lowercase version of I is dotless i | |
1766 (put-case-table-pair ?I | |
1767 (make-char 'latin-iso8859-9 #xfd) | |
1768 (standard-case-table)) | |
1769 ;; The uppercase version of i is I with dot | |
1770 (put-case-table-pair (make-char 'latin-iso8859-9 #xdd) | |
1771 ?i (standard-case-table)))) | |
1772 | |
1773 (set-language-info "Turkish" | |
1774 'exit-function | |
1775 (lambda () | |
1776 ;; Restore the normal case mappings for the characters. | |
1777 (put-case-table-pair ?I ?i (standard-case-table)))) | |
1778 | |
1779 (make-8-bit-coding-system | |
1780 'macintosh | |
1781 '((#x80 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS | |
1782 (#x81 ?\u00C5) ;; LATIN CAPITAL LETTER A WITH RING ABOVE | |
1783 (#x82 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA | |
1784 (#x83 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE | |
1785 (#x84 ?\u00D1) ;; LATIN CAPITAL LETTER N WITH TILDE | |
1786 (#x85 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS | |
1787 (#x86 ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS | |
1788 (#x87 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE | |
1789 (#x88 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE | |
1790 (#x89 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX | |
1791 (#x8A ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS | |
1792 (#x8B ?\u00E3) ;; LATIN SMALL LETTER A WITH TILDE | |
1793 (#x8C ?\u00E5) ;; LATIN SMALL LETTER A WITH RING ABOVE | |
1794 (#x8D ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA | |
1795 (#x8E ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE | |
1796 (#x8F ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE | |
1797 (#x90 ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX | |
1798 (#x91 ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS | |
1799 (#x92 ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE | |
1800 (#x93 ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE | |
1801 (#x94 ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX | |
1802 (#x95 ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS | |
1803 (#x96 ?\u00F1) ;; LATIN SMALL LETTER N WITH TILDE | |
1804 (#x97 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE | |
1805 (#x98 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE | |
1806 (#x99 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX | |
1807 (#x9A ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS | |
1808 (#x9B ?\u00F5) ;; LATIN SMALL LETTER O WITH TILDE | |
1809 (#x9C ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE | |
1810 (#x9D ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE | |
1811 (#x9E ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX | |
1812 (#x9F ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS | |
1813 (#xA0 ?\u2020) ;; DAGGER | |
1814 (#xA1 ?\u00B0) ;; DEGREE SIGN | |
1815 (#xA2 ?\u00A2) ;; CENT SIGN | |
1816 (#xA3 ?\u00A3) ;; POUND SIGN | |
1817 (#xA4 ?\u00A7) ;; SECTION SIGN | |
1818 (#xA5 ?\u2022) ;; BULLET | |
1819 (#xA6 ?\u00B6) ;; PILCROW SIGN | |
1820 (#xA7 ?\u00DF) ;; LATIN SMALL LETTER SHARP S | |
1821 (#xA8 ?\u00AE) ;; REGISTERED SIGN | |
1822 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN | |
1823 (#xAA ?\u2122) ;; TRADE MARK SIGN | |
1824 (#xAB ?\u00B4) ;; ACUTE ACCENT | |
1825 (#xAC ?\u00A8) ;; DIAERESIS | |
1826 (#xAD ?\u2260) ;; NOT EQUAL TO | |
1827 (#xAE ?\u00C6) ;; LATIN CAPITAL LETTER AE | |
1828 (#xAF ?\u00D8) ;; LATIN CAPITAL LETTER O WITH STROKE | |
1829 (#xB0 ?\u221E) ;; INFINITY | |
1830 (#xB1 ?\u00B1) ;; PLUS-MINUS SIGN | |
1831 (#xB2 ?\u2264) ;; LESS-THAN OR EQUAL TO | |
1832 (#xB3 ?\u2265) ;; GREATER-THAN OR EQUAL TO | |
1833 (#xB4 ?\u00A5) ;; YEN SIGN | |
1834 (#xB5 ?\u00B5) ;; MICRO SIGN | |
1835 (#xB6 ?\u2202) ;; PARTIAL DIFFERENTIAL | |
1836 (#xB7 ?\u2211) ;; N-ARY SUMMATION | |
1837 (#xB8 ?\u220F) ;; N-ARY PRODUCT | |
1838 (#xB9 ?\u03C0) ;; GREEK SMALL LETTER PI | |
1839 (#xBA ?\u222B) ;; INTEGRAL | |
1840 (#xBB ?\u00AA) ;; FEMININE ORDINAL INDICATOR | |
1841 (#xBC ?\u00BA) ;; MASCULINE ORDINAL INDICATOR | |
1842 (#xBD ?\u03A9) ;; GREEK CAPITAL LETTER OMEGA | |
1843 (#xBE ?\u00E6) ;; LATIN SMALL LETTER AE | |
1844 (#xBF ?\u00F8) ;; LATIN SMALL LETTER O WITH STROKE | |
1845 (#xC0 ?\u00BF) ;; INVERTED QUESTION MARK | |
1846 (#xC1 ?\u00A1) ;; INVERTED EXCLAMATION MARK | |
1847 (#xC2 ?\u00AC) ;; NOT SIGN | |
1848 (#xC3 ?\u221A) ;; SQUARE ROOT | |
1849 (#xC4 ?\u0192) ;; LATIN SMALL LETTER F WITH HOOK | |
1850 (#xC5 ?\u2248) ;; ALMOST EQUAL TO | |
1851 (#xC6 ?\u2206) ;; INCREMENT | |
1852 (#xC7 ?\u00AB) ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK | |
1853 (#xC8 ?\u00BB) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK | |
1854 (#xC9 ?\u2026) ;; HORIZONTAL ELLIPSIS | |
1855 (#xCA ?\u00A0) ;; NO-BREAK SPACE | |
1856 (#xCB ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE | |
1857 (#xCC ?\u00C3) ;; LATIN CAPITAL LETTER A WITH TILDE | |
1858 (#xCD ?\u00D5) ;; LATIN CAPITAL LETTER O WITH TILDE | |
1859 (#xCE ?\u0152) ;; LATIN CAPITAL LIGATURE OE | |
1860 (#xCF ?\u0153) ;; LATIN SMALL LIGATURE OE | |
1861 (#xD0 ?\u2013) ;; EN DASH | |
1862 (#xD1 ?\u2014) ;; EM DASH | |
1863 (#xD2 ?\u201C) ;; LEFT DOUBLE QUOTATION MARK | |
1864 (#xD3 ?\u201D) ;; RIGHT DOUBLE QUOTATION MARK | |
1865 (#xD4 ?\u2018) ;; LEFT SINGLE QUOTATION MARK | |
1866 (#xD5 ?\u2019) ;; RIGHT SINGLE QUOTATION MARK | |
1867 (#xD6 ?\u00F7) ;; DIVISION SIGN | |
1868 (#xD7 ?\u25CA) ;; LOZENGE | |
1869 (#xD8 ?\u00FF) ;; LATIN SMALL LETTER Y WITH DIAERESIS | |
1870 (#xD9 ?\u0178) ;; LATIN CAPITAL LETTER Y WITH DIAERESIS | |
1871 (#xDA ?\u2044) ;; FRACTION SLASH | |
1872 (#xDB ?\u20AC) ;; EURO SIGN | |
1873 (#xDC ?\u2039) ;; SINGLE LEFT-POINTING ANGLE QUOTATION MARK | |
1874 (#xDD ?\u203A) ;; SINGLE RIGHT-POINTING ANGLE QUOTATION MARK | |
1875 (#xDE ?\uFB01) ;; LATIN SMALL LIGATURE FI | |
1876 (#xDF ?\uFB02) ;; LATIN SMALL LIGATURE FL | |
1877 (#xE0 ?\u2021) ;; DOUBLE DAGGER | |
1878 (#xE1 ?\u00B7) ;; MIDDLE DOT | |
1879 (#xE2 ?\u201A) ;; SINGLE LOW-9 QUOTATION MARK | |
1880 (#xE3 ?\u201E) ;; DOUBLE LOW-9 QUOTATION MARK | |
1881 (#xE4 ?\u2030) ;; PER MILLE SIGN | |
1882 (#xE5 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX | |
1883 (#xE6 ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX | |
1884 (#xE7 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE | |
1885 (#xE8 ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS | |
1886 (#xE9 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE | |
1887 (#xEA ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE | |
1888 (#xEB ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX | |
1889 (#xEC ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS | |
1890 (#xED ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE | |
1891 (#xEE ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE | |
1892 (#xEF ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX | |
1893 (#xF0 ?\uF8FF) ;; Apple logo | |
1894 (#xF1 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE | |
1895 (#xF2 ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE | |
1896 (#xF3 ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX | |
1897 (#xF4 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE | |
1898 (#xF5 ?\u0131) ;; LATIN SMALL LETTER DOTLESS I | |
1899 (#xF6 ?\u02C6) ;; MODIFIER LETTER CIRCUMFLEX ACCENT | |
1900 (#xF7 ?\u02DC) ;; SMALL TILDE | |
1901 (#xF8 ?\u00AF) ;; MACRON | |
1902 (#xF9 ?\u02D8) ;; BREVE | |
1903 (#xFA ?\u02D9) ;; DOT ABOVE | |
1904 (#xFB ?\u02DA) ;; RING ABOVE | |
1905 (#xFC ?\u00B8) ;; CEDILLA | |
1906 (#xFD ?\u02DD) ;; DOUBLE ACUTE ACCENT | |
1907 (#xFE ?\u02DB) ;; OGONEK | |
1908 (#xFF ?\u02C7)) ;; CARON | |
1909 "The Macintosh encoding for Western Europe and the Americas" | |
1910 '(mnemonic "MR" | |
1911 documentation "MacRoman, MIME name macintosh" | |
4616
ad2d2f4848f5
Add GNU Emacs' name for Mac Roman as an alias.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4604
diff
changeset
|
1912 aliases (cp10000 MacRoman mac-roman))) |
4145 | 1913 |
1914 (make-8-bit-coding-system | |
1915 'windows-1252 | |
1916 '((#x80 ?\u20AC) ;; EURO SIGN | |
1917 (#x82 ?\u201A) ;; SINGLE LOW-9 QUOTATION MARK | |
1918 (#x83 ?\u0192) ;; LATIN SMALL LETTER F WITH HOOK | |
1919 (#x84 ?\u201E) ;; DOUBLE LOW-9 QUOTATION MARK | |
1920 (#x85 ?\u2026) ;; HORIZONTAL ELLIPSIS | |
1921 (#x86 ?\u2020) ;; DAGGER | |
1922 (#x87 ?\u2021) ;; DOUBLE DAGGER | |
1923 (#x88 ?\u02C6) ;; MODIFIER LETTER CIRCUMFLEX ACCENT | |
1924 (#x89 ?\u2030) ;; PER MILLE SIGN | |
1925 (#x8A ?\u0160) ;; LATIN CAPITAL LETTER S WITH CARON | |
1926 (#x8B ?\u2039) ;; SINGLE LEFT-POINTING ANGLE QUOTATION MARK | |
1927 (#x8C ?\u0152) ;; LATIN CAPITAL LIGATURE OE | |
1928 (#x8E ?\u017D) ;; LATIN CAPITAL LETTER Z WITH CARON | |
1929 (#x91 ?\u2018) ;; LEFT SINGLE QUOTATION MARK | |
1930 (#x92 ?\u2019) ;; RIGHT SINGLE QUOTATION MARK | |
1931 (#x93 ?\u201C) ;; LEFT DOUBLE QUOTATION MARK | |
1932 (#x94 ?\u201D) ;; RIGHT DOUBLE QUOTATION MARK | |
1933 (#x95 ?\u2022) ;; BULLET | |
1934 (#x96 ?\u2013) ;; EN DASH | |
1935 (#x97 ?\u2014) ;; EM DASH | |
1936 (#x98 ?\u02DC) ;; SMALL TILDE | |
1937 (#x99 ?\u2122) ;; TRADE MARK SIGN | |
1938 (#x9A ?\u0161) ;; LATIN SMALL LETTER S WITH CARON | |
1939 (#x9B ?\u203A) ;; SINGLE RIGHT-POINTING ANGLE QUOTATION MARK | |
1940 (#x9C ?\u0153) ;; LATIN SMALL LIGATURE OE | |
1941 (#x9E ?\u017E) ;; LATIN SMALL LETTER Z WITH CARON | |
4604
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1942 (#x9F ?\u0178) ;; LATIN CAPITAL LETTER Y WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1943 (#xA0 ?\u00A0) ;; NO-BREAK SPACE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1944 (#xA1 ?\u00A1) ;; INVERTED EXCLAMATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1945 (#xA2 ?\u00A2) ;; CENT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1946 (#xA3 ?\u00A3) ;; POUND SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1947 (#xA4 ?\u00A4) ;; CURRENCY SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1948 (#xA5 ?\u00A5) ;; YEN SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1949 (#xA6 ?\u00A6) ;; BROKEN BAR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1950 (#xA7 ?\u00A7) ;; SECTION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1951 (#xA8 ?\u00A8) ;; DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1952 (#xA9 ?\u00A9) ;; COPYRIGHT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1953 (#xAA ?\u00AA) ;; FEMININE ORDINAL INDICATOR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1954 (#xAB ?\u00AB) ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1955 (#xAC ?\u00AC) ;; NOT SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1956 (#xAD ?\u00AD) ;; SOFT HYPHEN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1957 (#xAE ?\u00AE) ;; REGISTERED SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1958 (#xAF ?\u00AF) ;; MACRON |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1959 (#xB0 ?\u00B0) ;; DEGREE SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1960 (#xB1 ?\u00B1) ;; PLUS-MINUS SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1961 (#xB2 ?\u00B2) ;; SUPERSCRIPT TWO |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1962 (#xB3 ?\u00B3) ;; SUPERSCRIPT THREE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1963 (#xB4 ?\u00B4) ;; ACUTE ACCENT |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1964 (#xB5 ?\u00B5) ;; MICRO SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1965 (#xB6 ?\u00B6) ;; PILCROW SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1966 (#xB7 ?\u00B7) ;; MIDDLE DOT |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1967 (#xB8 ?\u00B8) ;; CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1968 (#xB9 ?\u00B9) ;; SUPERSCRIPT ONE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1969 (#xBA ?\u00BA) ;; MASCULINE ORDINAL INDICATOR |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1970 (#xBB ?\u00BB) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1971 (#xBC ?\u00BC) ;; VULGAR FRACTION ONE QUARTER |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1972 (#xBD ?\u00BD) ;; VULGAR FRACTION ONE HALF |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1973 (#xBE ?\u00BE) ;; VULGAR FRACTION THREE QUARTERS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1974 (#xBF ?\u00BF) ;; INVERTED QUESTION MARK |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1975 (#xC0 ?\u00C0) ;; LATIN CAPITAL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1976 (#xC1 ?\u00C1) ;; LATIN CAPITAL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1977 (#xC2 ?\u00C2) ;; LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1978 (#xC3 ?\u00C3) ;; LATIN CAPITAL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1979 (#xC4 ?\u00C4) ;; LATIN CAPITAL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1980 (#xC5 ?\u00C5) ;; LATIN CAPITAL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1981 (#xC6 ?\u00C6) ;; LATIN CAPITAL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1982 (#xC7 ?\u00C7) ;; LATIN CAPITAL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1983 (#xC8 ?\u00C8) ;; LATIN CAPITAL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1984 (#xC9 ?\u00C9) ;; LATIN CAPITAL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1985 (#xCA ?\u00CA) ;; LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1986 (#xCB ?\u00CB) ;; LATIN CAPITAL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1987 (#xCC ?\u00CC) ;; LATIN CAPITAL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1988 (#xCD ?\u00CD) ;; LATIN CAPITAL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1989 (#xCE ?\u00CE) ;; LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1990 (#xCF ?\u00CF) ;; LATIN CAPITAL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1991 (#xD0 ?\u00D0) ;; LATIN CAPITAL LETTER ETH |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1992 (#xD1 ?\u00D1) ;; LATIN CAPITAL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1993 (#xD2 ?\u00D2) ;; LATIN CAPITAL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1994 (#xD3 ?\u00D3) ;; LATIN CAPITAL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1995 (#xD4 ?\u00D4) ;; LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1996 (#xD5 ?\u00D5) ;; LATIN CAPITAL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1997 (#xD6 ?\u00D6) ;; LATIN CAPITAL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1998 (#xD7 ?\u00D7) ;; MULTIPLICATION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
1999 (#xD8 ?\u00D8) ;; LATIN CAPITAL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2000 (#xD9 ?\u00D9) ;; LATIN CAPITAL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2001 (#xDA ?\u00DA) ;; LATIN CAPITAL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2002 (#xDB ?\u00DB) ;; LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2003 (#xDC ?\u00DC) ;; LATIN CAPITAL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2004 (#xDD ?\u00DD) ;; LATIN CAPITAL LETTER Y WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2005 (#xDE ?\u00DE) ;; LATIN CAPITAL LETTER THORN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2006 (#xDF ?\u00DF) ;; LATIN SMALL LETTER SHARP S |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2007 (#xE0 ?\u00E0) ;; LATIN SMALL LETTER A WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2008 (#xE1 ?\u00E1) ;; LATIN SMALL LETTER A WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2009 (#xE2 ?\u00E2) ;; LATIN SMALL LETTER A WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2010 (#xE3 ?\u00E3) ;; LATIN SMALL LETTER A WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2011 (#xE4 ?\u00E4) ;; LATIN SMALL LETTER A WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2012 (#xE5 ?\u00E5) ;; LATIN SMALL LETTER A WITH RING ABOVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2013 (#xE6 ?\u00E6) ;; LATIN SMALL LETTER AE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2014 (#xE7 ?\u00E7) ;; LATIN SMALL LETTER C WITH CEDILLA |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2015 (#xE8 ?\u00E8) ;; LATIN SMALL LETTER E WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2016 (#xE9 ?\u00E9) ;; LATIN SMALL LETTER E WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2017 (#xEA ?\u00EA) ;; LATIN SMALL LETTER E WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2018 (#xEB ?\u00EB) ;; LATIN SMALL LETTER E WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2019 (#xEC ?\u00EC) ;; LATIN SMALL LETTER I WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2020 (#xED ?\u00ED) ;; LATIN SMALL LETTER I WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2021 (#xEE ?\u00EE) ;; LATIN SMALL LETTER I WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2022 (#xEF ?\u00EF) ;; LATIN SMALL LETTER I WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2023 (#xF0 ?\u00F0) ;; LATIN SMALL LETTER ETH |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2024 (#xF1 ?\u00F1) ;; LATIN SMALL LETTER N WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2025 (#xF2 ?\u00F2) ;; LATIN SMALL LETTER O WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2026 (#xF3 ?\u00F3) ;; LATIN SMALL LETTER O WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2027 (#xF4 ?\u00F4) ;; LATIN SMALL LETTER O WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2028 (#xF5 ?\u00F5) ;; LATIN SMALL LETTER O WITH TILDE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2029 (#xF6 ?\u00F6) ;; LATIN SMALL LETTER O WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2030 (#xF7 ?\u00F7) ;; DIVISION SIGN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2031 (#xF8 ?\u00F8) ;; LATIN SMALL LETTER O WITH STROKE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2032 (#xF9 ?\u00F9) ;; LATIN SMALL LETTER U WITH GRAVE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2033 (#xFA ?\u00FA) ;; LATIN SMALL LETTER U WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2034 (#xFB ?\u00FB) ;; LATIN SMALL LETTER U WITH CIRCUMFLEX |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2035 (#xFC ?\u00FC) ;; LATIN SMALL LETTER U WITH DIAERESIS |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2036 (#xFD ?\u00FD) ;; LATIN SMALL LETTER Y WITH ACUTE |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2037 (#xFE ?\u00FE) ;; LATIN SMALL LETTER THORN |
e0a8715fdb1f
Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4600
diff
changeset
|
2038 (#xFF ?\u00FF));; LATIN SMALL LETTER Y WITH DIAERESIS |
4145 | 2039 "Microsoft's extension of iso-8859-1 for Western Europe and the Americas. " |
2040 '(mnemonic "cp1252" | |
2041 aliases (cp1252))) | |
2042 | |
4316
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2043 ;; Provide language environments that prefer specific coding systems. |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2044 (loop |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2045 for coding-system in '(utf-8 windows-1252 macintosh) |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2046 with name = nil |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2047 with assocked = nil |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2048 do |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2049 (setq name (create-variant-language-environment "English" coding-system) |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2050 assocked (assoc name language-info-alist)) |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2051 (setcar assocked |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2052 (upcase (symbol-name coding-system))) |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2053 (setcdr assocked |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2054 (remassq 'locale (cdr assocked)))) |
2e528ccfe690
Create "UTF-8" and "WINDOWS-1252" language environments.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4299
diff
changeset
|
2055 |
3767 | 2056 ;;; latin.el ends here |