annotate lisp/mule/latin.el @ 4604:e0a8715fdb1f

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