annotate lisp/iso/iso8859-1.el @ 164:4e0740e5aab2

Added tag r20-3b8 for changeset 0132846995bd
author cvs
date Mon, 13 Aug 2007 09:43:39 +0200
parents 131b0175ea99
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;; Sets the case and syntax tables for the ISO-8859/1 character set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1992 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; You should have received a copy of the GNU General Public License
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
17 ;; along with XEmacs; see the file COPYING. If not, write to the Free
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
18 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; created by jwz, 19-aug-92.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 (let ((table (standard-syntax-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; The symbol characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 (modify-syntax-entry ?\240 "_" table) ; nobreakspace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 (modify-syntax-entry ?\241 "." table) ; exclamdown
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 (modify-syntax-entry ?\242 "_" table) ; cent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 (modify-syntax-entry ?\243 "_" table) ; sterling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (modify-syntax-entry ?\244 "_" table) ; currency
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (modify-syntax-entry ?\245 "_" table) ; yen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 (modify-syntax-entry ?\246 "_" table) ; brokenbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (modify-syntax-entry ?\247 "_" table) ; section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (modify-syntax-entry ?\250 "_" table) ; diaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (modify-syntax-entry ?\251 "_" table) ; copyright
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (modify-syntax-entry ?\252 "_" table) ; ordfeminine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (modify-syntax-entry ?\253 "(\273" table) ; guillemotleft
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 (modify-syntax-entry ?\254 "_" table) ; notsign
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (modify-syntax-entry ?\255 "_" table) ; hyphen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (modify-syntax-entry ?\256 "_" table) ; registered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (modify-syntax-entry ?\257 "_" table) ; macron
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (modify-syntax-entry ?\260 "_" table) ; degree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (modify-syntax-entry ?\261 "_" table) ; plusminus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (modify-syntax-entry ?\262 "_" table) ; twosuperior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (modify-syntax-entry ?\263 "_" table) ; threesuperior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (modify-syntax-entry ?\264 "_" table) ; acute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (modify-syntax-entry ?\265 "_" table) ; mu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (modify-syntax-entry ?\266 "_" table) ; paragraph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (modify-syntax-entry ?\267 "_" table) ; periodcentered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (modify-syntax-entry ?\270 "_" table) ; cedilla
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (modify-syntax-entry ?\271 "_" table) ; onesuperior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (modify-syntax-entry ?\272 "_" table) ; masculine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (modify-syntax-entry ?\273 ")\253" table) ; guillemotright
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (modify-syntax-entry ?\274 "_" table) ; onequarter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (modify-syntax-entry ?\275 "_" table) ; onehalf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (modify-syntax-entry ?\276 "_" table) ; threequarters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (modify-syntax-entry ?\277 "_" table) ; questiondown
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; the upper-case characters (plus "multiply" and "ssharp")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (modify-syntax-entry ?\300 "w" table) ; Agrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (modify-syntax-entry ?\301 "w" table) ; Aacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (modify-syntax-entry ?\302 "w" table) ; Acircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (modify-syntax-entry ?\303 "w" table) ; Atilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (modify-syntax-entry ?\304 "w" table) ; Adiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (modify-syntax-entry ?\305 "w" table) ; Aring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (modify-syntax-entry ?\306 "w" table) ; AE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (modify-syntax-entry ?\307 "w" table) ; Ccedilla
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (modify-syntax-entry ?\310 "w" table) ; Egrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (modify-syntax-entry ?\311 "w" table) ; Eacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (modify-syntax-entry ?\312 "w" table) ; Ecircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (modify-syntax-entry ?\313 "w" table) ; Ediaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (modify-syntax-entry ?\314 "w" table) ; Igrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (modify-syntax-entry ?\315 "w" table) ; Iacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (modify-syntax-entry ?\316 "w" table) ; Icircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (modify-syntax-entry ?\317 "w" table) ; Idiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (modify-syntax-entry ?\320 "w" table) ; ETH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (modify-syntax-entry ?\321 "w" table) ; Ntilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (modify-syntax-entry ?\322 "w" table) ; Ograve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (modify-syntax-entry ?\323 "w" table) ; Oacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (modify-syntax-entry ?\324 "w" table) ; Ocircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (modify-syntax-entry ?\325 "w" table) ; Otilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (modify-syntax-entry ?\326 "w" table) ; Odiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (modify-syntax-entry ?\327 "_" table) ; multiply
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (modify-syntax-entry ?\330 "w" table) ; Ooblique
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (modify-syntax-entry ?\331 "w" table) ; Ugrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (modify-syntax-entry ?\332 "w" table) ; Uacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (modify-syntax-entry ?\333 "w" table) ; Ucircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (modify-syntax-entry ?\334 "w" table) ; Udiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (modify-syntax-entry ?\335 "w" table) ; Yacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (modify-syntax-entry ?\336 "w" table) ; THORN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (modify-syntax-entry ?\337 "w" table) ; ssharp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ;; the lower-case characters (plus "division" and "ydiaeresis")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (modify-syntax-entry ?\340 "w" table) ; agrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (modify-syntax-entry ?\341 "w" table) ; aacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (modify-syntax-entry ?\342 "w" table) ; acircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (modify-syntax-entry ?\343 "w" table) ; atilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (modify-syntax-entry ?\344 "w" table) ; adiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (modify-syntax-entry ?\345 "w" table) ; aring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (modify-syntax-entry ?\346 "w" table) ; ae
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (modify-syntax-entry ?\347 "w" table) ; ccedilla
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (modify-syntax-entry ?\350 "w" table) ; egrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (modify-syntax-entry ?\351 "w" table) ; eacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (modify-syntax-entry ?\352 "w" table) ; ecircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (modify-syntax-entry ?\353 "w" table) ; ediaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (modify-syntax-entry ?\354 "w" table) ; igrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (modify-syntax-entry ?\355 "w" table) ; iacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (modify-syntax-entry ?\356 "w" table) ; icircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (modify-syntax-entry ?\357 "w" table) ; idiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (modify-syntax-entry ?\360 "w" table) ; eth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (modify-syntax-entry ?\361 "w" table) ; ntilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (modify-syntax-entry ?\362 "w" table) ; ograve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (modify-syntax-entry ?\363 "w" table) ; oacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (modify-syntax-entry ?\364 "w" table) ; ocircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (modify-syntax-entry ?\365 "w" table) ; otilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (modify-syntax-entry ?\366 "w" table) ; odiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (modify-syntax-entry ?\367 "_" table) ; division
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (modify-syntax-entry ?\370 "w" table) ; ooblique
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (modify-syntax-entry ?\371 "w" table) ; ugrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (modify-syntax-entry ?\372 "w" table) ; uacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (modify-syntax-entry ?\373 "w" table) ; ucircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (modify-syntax-entry ?\374 "w" table) ; udiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (modify-syntax-entry ?\375 "w" table) ; yacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (modify-syntax-entry ?\376 "w" table) ; thorn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (modify-syntax-entry ?\377 "w" table) ; ydiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (defconst iso8859/1-case-table nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 "The case table for ISO-8859/1 characters.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 ;;; This macro expands into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 ;;; (setq iso8859/1-case-table (purecopy '("..." nil nil nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ;;; doing the computation of the case table at compile-time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 ((macro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 . (lambda (&rest pairs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (let ((downcase (make-string 256 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (i 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (while (< i 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (aset downcase i (if (and (>= i ?A) (<= i ?Z)) (+ i 32) i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (while pairs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (aset downcase (car (car pairs)) (car (cdr (car pairs))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (setq pairs (cdr pairs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (cons 'setq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (cons 'iso8859/1-case-table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (list (list 'purecopy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (list 'quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (list downcase nil nil nil)))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (?\300 ?\340) ; Agrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (?\301 ?\341) ; Aacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (?\302 ?\342) ; Acircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (?\303 ?\343) ; Atilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (?\304 ?\344) ; Adiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (?\305 ?\345) ; Aring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (?\306 ?\346) ; AE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (?\307 ?\347) ; Ccedilla
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (?\310 ?\350) ; Egrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (?\311 ?\351) ; Eacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (?\312 ?\352) ; Ecircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (?\313 ?\353) ; Ediaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (?\314 ?\354) ; Igrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (?\315 ?\355) ; Iacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (?\316 ?\356) ; Icircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (?\317 ?\357) ; Idiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (?\320 ?\360) ; ETH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (?\321 ?\361) ; Ntilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (?\322 ?\362) ; Ograve
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (?\323 ?\363) ; Oacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (?\324 ?\364) ; Ocircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (?\325 ?\365) ; Otilde
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (?\326 ?\366) ; Odiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (?\330 ?\370) ; Ooblique
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (?\331 ?\371) ; Ugrave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (?\332 ?\372) ; Uacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (?\333 ?\373) ; Ucircumflex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (?\334 ?\374) ; Udiaeresis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (?\335 ?\375) ; Yacute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (?\336 ?\376) ; THORN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (set-standard-case-table (mapcar 'copy-sequence iso8859/1-case-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (setq-default ctl-arrow 'iso-8859/1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (provide 'iso8859-1)