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