4021
|
1 ;;; european.el --- European languages -*- coding: iso-2022-7bit; -*-
|
|
2
|
|
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
|
|
4 ;; Licensed to the Free Software Foundation.
|
|
5 ;; Copyright (C) 1997 MORIOKA Tomohiko
|
|
6 ;; Copyright (C) 2001 Ben Wing.
|
|
7 ;; Copyright (C) 2002, 2005, 2006 Free Software Foundation
|
|
8
|
|
9 ;; Keywords: multilingual, European
|
|
10
|
|
11 ;; This file is part of XEmacs.
|
|
12
|
|
13 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
14 ;; under the terms of the GNU General Public License as published by
|
|
15 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
16 ;; any later version.
|
|
17
|
|
18 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
21 ;; General Public License for more details.
|
|
22
|
|
23 ;; You should have received a copy of the GNU General Public License
|
|
24 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
25 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
26 ;; 02111-1307, USA.
|
|
27
|
|
28 ;;; Commentary:
|
|
29
|
|
30 ;; For Roman-alphabet-using Europeans, eight coded character sets,
|
|
31 ;; ISO8859-1,2,3,4,9,14,15,16 are supported.
|
|
32
|
|
33
|
|
34
|
|
35 ;; Latin-1's case is dealt with in iso8859-1.el, which see. Its syntax is
|
|
36 ;; initialised in syntax.c:complex_vars_of_syntax.
|
|
37
|
|
38
|
|
39 ;; Latin-2 (ISO-8859-2). Central Europe; Czech, Slovak, Hungarian, Polish,
|
|
40 ;; Croatian, other languages.
|
|
41 ;;
|
|
42 ;; (Yes, it really is Central European. German written in Latin 2 and using
|
|
43 ;; only Umlaute and the sharp S in its non-ASCII repertoire is bit-for-bit
|
|
44 ;; identical with the same text in Latin-1.)
|
|
45
|
|
46 (make-coding-system
|
|
47 'iso-8859-2 'iso2022 "ISO-8859-2 (Latin-2)"
|
|
48 '(charset-g0 ascii
|
|
49 charset-g1 latin-iso8859-2
|
|
50 charset-g2 t
|
|
51 charset-g3 t
|
|
52 mnemonic "MIME/Ltn-2"))
|
|
53
|
|
54 ;; The default character syntax is now word. Pay attention to the
|
|
55 ;; exceptions in ISO-8859-2, copying them from ISO-8859-1.
|
|
56 (loop
|
|
57 for (latin-2 latin-1)
|
|
58 in '((#xA0 #xA0) ;; NO BREAK SPACE
|
|
59 (#xA2 #xB4) ;; BREVE, ACUTE ACCENT
|
|
60 (#xA4 #xA4) ;; CURRENCY SIGN
|
|
61 (#xA7 #xA7) ;; SECTION SIGN
|
|
62 (#xA8 #xA8) ;; DIAERESIS
|
|
63 (#xAD #xAD) ;; SOFT HYPHEN
|
|
64 (#xB0 #xB0) ;; DEGREE SIGN
|
|
65 (#xB2 #xB4) ;; OGONEK, ACUTE ACCENT
|
|
66 (#xB4 #xB4) ;; ACUTE ACCENT
|
|
67 (#xB7 #xB4) ;; CARON, ACUTE ACCENT
|
|
68 (#xB8 #xB8) ;; CEDILLA
|
|
69 (#xBD #xB4) ;; DOUBLE ACUTE ACCENT, ACUTE ACCENT
|
|
70 (#xD7 #xD7) ;; MULTIPLICATION SIGN
|
|
71 (#xF7 #xF7) ;; DIVISION SIGN
|
|
72 (#xFF #xB4)) ;; DOT ABOVE, ACUTE ACCENT
|
|
73 with syntax-table = (standard-syntax-table)
|
|
74 do (modify-syntax-entry
|
|
75 (make-char 'latin-iso8859-2 latin-2)
|
|
76 (string (char-syntax (make-char 'latin-iso8859-1 latin-1)))
|
|
77 syntax-table))
|
|
78
|
|
79 ;;
|
|
80 ;; Latin-3 (ISO-8859-3). Esperanto, Maltese and Turkish. Obsolescent.
|
|
81
|
|
82 (make-coding-system
|
|
83 'iso-8859-3 'iso2022 "ISO-8859-3 (Latin-3)"
|
|
84 '(charset-g0 ascii
|
|
85 charset-g1 latin-iso8859-3
|
|
86 charset-g2 t
|
|
87 charset-g3 t
|
|
88 mnemonic "MIME/Ltn-3"))
|
|
89
|
|
90 ;; Initialise the non-word syntax codes in ISO-8859-3, copying them from
|
|
91 ;; ISO-8859-1.
|
|
92 (loop
|
|
93 for (latin-3 latin-1)
|
|
94 in '((#xA0 #xA0) ;; NO BREAK SPACE
|
|
95 (#xA2 #xB4) ;; BREVE, ACUTE ACCENT
|
|
96 (#xA3 #xA3) ;; POUND SIGN
|
|
97 (#xA4 #xA4) ;; CURRENCY SIGN
|
|
98 (#xA7 #xA7) ;; SECTION SIGN
|
|
99 (#xA8 #xA8) ;; DIAERESIS
|
|
100 (#xAD #xAD) ;; SOFT HYPHEN
|
|
101 (#xB0 #xB0) ;; DEGREE SIGN
|
|
102 (#xB2 #xB2) ;; SUPERSCRIPT TWO
|
|
103 (#xB3 #xB3) ;; SUPERSCRIPT THREE
|
|
104 (#xB4 #xB4) ;; ACUTE ACCENT
|
|
105 (#xB5 #xB5) ;; MICRO SIGN
|
|
106 (#xB7 #xB7) ;; MIDDLE DOT
|
|
107 (#xB8 #xB8) ;; CEDILLA
|
|
108 (#xBD #xBD) ;; VULGAR FRACTION ONE HALF
|
|
109 (#xD7 #xD7) ;; MULTIPLICATION SIGN
|
|
110 (#xF7 #xF7) ;; DIVISION SIGN
|
|
111 (#xFF #xB4)) ;; DOT ABOVE, ACUTE ACCENT
|
|
112 with syntax-table = (standard-syntax-table)
|
|
113 do (modify-syntax-entry
|
|
114 (make-char 'latin-iso8859-3 latin-3)
|
|
115 (string (char-syntax (make-char 'latin-iso8859-1 latin-1)))
|
|
116 syntax-table))
|
|
117
|
|
118 ;; Latin-4 (ISO-8859-4)
|
|
119
|
|
120 ;; Estonian, Latvian, Lithuanian, Greenlandic, and Sami. Obsolescent.
|
|
121
|
|
122 (make-coding-system
|
|
123 'iso-8859-4 'iso2022 "ISO-8859-4 (Latin-4)"
|
|
124 '(charset-g0 ascii
|
|
125 charset-g1 latin-iso8859-4
|
|
126 charset-g2 t
|
|
127 charset-g3 t
|
|
128 mnemonic "MIME/Ltn-4"))
|
|
129
|
|
130 ;; The default character syntax is now word. Pay attention to the
|
|
131 ;; exceptions in ISO-8859-4, copying them from ISO-8859-1.
|
|
132 (loop
|
|
133 for (latin-4 latin-1)
|
|
134 in '((#xA0 #xA0) ;; NO BREAK SPACE
|
|
135 (#xA4 #xA4) ;; CURRENCY SIGN
|
|
136 (#xA7 #xA7) ;; SECTION SIGN
|
|
137 (#xA8 #xA8) ;; DIAERESIS
|
|
138 (#xAD #xAD) ;; SOFT HYPHEN
|
|
139 (#xB0 #xB0) ;; DEGREE SIGN
|
|
140 (#xB2 #xB4) ;; OGONEK, ACUTE ACCENT
|
|
141 (#xB4 #xB4) ;; ACUTE ACCENT
|
|
142 (#xB7 #xB4) ;; CARON, ACUTE ACCENT
|
|
143 (#xB8 #xB8) ;; CEDILLA
|
|
144 (#xD7 #xD7) ;; MULTIPLICATION SIGN
|
|
145 (#xF7 #xF7) ;; DIVISION SIGN
|
|
146 (#xFF #xB4)) ;; DOT ABOVE, ACUTE ACCENT
|
|
147 with syntax-table = (standard-syntax-table)
|
|
148 do (modify-syntax-entry
|
|
149 (make-char 'latin-iso8859-4 latin-4)
|
|
150 (string (char-syntax (make-char 'latin-iso8859-1 latin-1)))
|
|
151 syntax-table))
|
|
152
|
|
153
|
|
154 ;; Latin-8 (ISO 8859-14) Celtic.
|
|
155
|
|
156 ;; Never widely used. Current-orthography Gaelic, both Irish and Scots, is
|
|
157 ;; easily written with Latin-1. Wikipedia says the same about Welsh.
|
|
158
|
|
159 (make-charset 'latin-iso8859-14
|
|
160 "Right-Hand Part of Latin Alphabet 8 (ISO/IEC 8859-14)"
|
|
161 '(dimension 1
|
|
162 registries ["ISO8859-14"]
|
|
163 chars 96
|
|
164 columns 1
|
|
165 direction l2r
|
|
166 final ?_
|
|
167 graphic 1
|
|
168 short-name "RHP of Latin-8"
|
|
169 long-name "RHP of Latin-8 (ISO 8859-14)"))
|
|
170
|
|
171 ;;
|
|
172 ;; Character syntax defaults to word. The exceptions here shared with Latin-1.
|
|
173 (dolist (code '(#xa0 ;; NO BREAK SPACE
|
|
174 #xa3 ;; POUND SIGN
|
|
175 #xa7 ;; SECTION SIGN
|
|
176 #xa9 ;; COPYRIGHT
|
|
177 #xad ;; SOFT HYPHEN
|
|
178 #xae ;; REGISTERED
|
|
179 #xb6)) ;; PILCROW SIGN
|
|
180 (modify-syntax-entry (make-char 'latin-iso8859-14 code)
|
|
181 (string (char-syntax (make-char 'latin-iso8859-1 code)))
|
|
182 (standard-syntax-table)))
|
|
183
|
|
184
|
|
185 ;; The syntax table code for ISO 8859-15 and ISO 8859-16 requires that the
|
|
186 ;; guillemets not have parenthesis syntax, which they used to have in the
|
|
187 ;; past. See syntax.c:complex_vars_of_syntax.
|
|
188
|
|
189 (assert (not (memq (char-syntax (make-char 'latin-iso8859-1 #xAB)) '(?\( ?\))))
|
|
190 t "This code assumes \xAB does not have parenthesis syntax. ")
|
|
191
|
|
192 (assert (not (memq (char-syntax (make-char 'latin-iso8859-1 #xBB)) '(?\( ?\))))
|
|
193 t "This code assumes \xBB does not have parenthesis syntax. ")
|
|
194
|
|
195
|
|
196 ;; Latin-9 (ISO-8859-15)
|
|
197 ;;
|
|
198 ;; Latin-1 plus Euro, plus a few accented characters for the sake of correct
|
|
199 ;; Finnish and French orthography. Only ever widely used on Unix.
|
|
200 ;;
|
|
201 ;; Based on Latin-1 and differences therefrom.
|
|
202 ;;
|
|
203 ;; First, initialise the syntax from the corresponding Latin-1 characters.
|
|
204 (loop
|
|
205 for c from #xa0 to #xff
|
|
206 with syntax-table = (standard-syntax-table)
|
|
207 do (modify-syntax-entry (make-char 'latin-iso8859-15 c)
|
|
208 (string (char-syntax (make-char 'latin-iso8859-1 c)))
|
|
209 syntax-table))
|
|
210
|
|
211 ;; Now, the exceptions. The Euro sign retains the syntax of CURRENCY SIGN.
|
|
212 (loop
|
|
213 for c in '(?,b&(B ?,b((B ?,b4(B ?,b8(B ?,b<(B ?,b=(B ?,b>(B)
|
|
214 with syntax-table = (standard-syntax-table)
|
|
215 do (modify-syntax-entry c "w" syntax-table))
|
|
216
|
|
217 (make-coding-system
|
|
218 'iso-8859-15 'iso2022
|
|
219 "ISO 4873 conforming 8-bit code (ASCII + Latin 9; aka Latin-1 with Euro)"
|
|
220 `(mnemonic "MIME/Ltn-9" ; bletch
|
|
221 eol-type nil
|
|
222 charset-g0 ascii
|
|
223 charset-g1 latin-iso8859-15
|
|
224 charset-g2 t
|
|
225 charset-g3 t))
|
|
226 ;; end of ISO 8859-15.
|
|
227
|
|
228 ;;
|
|
229 ;; Latin-10 (ISO 8859-16).
|
|
230 ;;
|
|
231 ;; "South-Eastern European." Not, to my knowledge, ever widely used.
|
|
232
|
|
233 (make-charset 'latin-iso8859-16
|
|
234 "Right-Hand Part of Latin Alphabet 10 (ISO/IEC 8859-16)"
|
|
235 '(dimension 1
|
|
236 registries ["ISO8859-16"]
|
|
237 chars 96
|
|
238 columns 1
|
|
239 direction l2r
|
|
240 final ?f ; octet 06/06; cf ISO-IR 226
|
|
241 graphic 1
|
|
242 short-name "RHP of Latin-10"
|
|
243 long-name "RHP of Latin-10 (ISO 8859-16)"))
|
|
244
|
|
245 ;; Copy over the non-word syntax this charset has in common with Latin 1.
|
|
246 (dolist (code '(#xa0 ;; NO BREAK SPACE
|
|
247 #xa7 ;; SECTION SIGN
|
|
248 #xa9 ;; COPYRIGHT
|
|
249 #xab ;; LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
|
|
250 #xad ;; SOFT HYPHEN
|
|
251 #xb0 ;; DEGREE
|
|
252 #xb1 ;; PLUS-MINUS SIGN
|
|
253 #xb6 ;; PILCROW SIGN
|
|
254 #xb7 ;; MIDDLE DOT
|
|
255 #xbb)) ;; RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
|
|
256 (modify-syntax-entry (make-char 'latin-iso8859-16 code)
|
|
257 (string (char-syntax (make-char 'latin-iso8859-1 code)))
|
|
258 (standard-syntax-table)))
|
|
259
|
|
260 ;; EURO SIGN. Take its syntax from the pound sign.
|
|
261 (modify-syntax-entry (make-char 'latin-iso8859-16 #xa4)
|
|
262 (string (char-syntax (make-char 'latin-iso8859-1 #xa3)))
|
|
263 (standard-syntax-table))
|
|
264
|
|
265 ;; Take DOUBLE LOW-9 QUOTATION MARK's syntax from that of LEFT-POINTING
|
|
266 ;; DOUBLE ANGLE QUOTATION MARK.
|
|
267 (modify-syntax-entry (make-char 'latin-iso8859-16 #xa5)
|
|
268 (string (char-syntax (make-char 'latin-iso8859-1 #xab)))
|
|
269 (standard-syntax-table))
|
|
270
|
|
271 ;; Take RIGHT DOUBLE QUOTATION MARK's syntax from that of RIGHT-POINTING
|
|
272 ;; DOUBLE ANGLE QUOTATION MARK.
|
|
273 (modify-syntax-entry (make-char 'latin-iso8859-16 #xb5)
|
|
274 (string (char-syntax (make-char 'latin-iso8859-1 #xbb)))
|
|
275 (standard-syntax-table))
|
|
276
|
|
277 ;; Add a coding system for ISO 8859-16.
|
|
278 (make-coding-system
|
|
279 'iso-8859-16 'iso2022 "MIME ISO-8859-16"
|
|
280 '(charset-g0 ascii
|
|
281 charset-g1 latin-iso8859-16
|
|
282 charset-g2 t ; grrr
|
|
283 charset-g3 t ; grrr
|
|
284 mnemonic "MIME/Ltn-10"))
|
|
285
|
|
286 ;; end of ISO 8859-16.
|
|
287
|
|
288
|
|
289 (provide 'romanian)
|
|
290
|
|
291 ;; Czech support originally from czech.el
|
|
292 ;; Author: Milan Zamazal <pdm@zamazal.org>
|
|
293 ;; Maintainer (FSF): Pavel Jan,Am(Bk <Pavel@Janik.cz>
|
|
294 ;; Maintainer (for XEmacs): David Sauer <davids@penguin.cz>
|
|
295
|
|
296 (provide 'czech)
|
|
297
|
|
298 ;; Slovak support originally from slovak.el
|
|
299 ;; Authors: Tibor ,B)(Bimko <tibor.simko@fmph.uniba.sk>,
|
|
300 ;; Milan Zamazal <pdm@fi.muni.cz>
|
|
301 ;; Maintainer: Milan Zamazal <pdm@fi.muni.cz>
|
|
302
|
|
303 (provide 'slovenian)
|
|
304
|
|
305 ;; Latin-5 (ISO-8859-9)
|
|
306
|
|
307 ;; Turkish (more generally Turkic.) This is identical to Latin-1, with the
|
|
308 ;; exception that the Icelandic-specific letters have been replaced by
|
|
309 ;; Turkish-specific letters. As such, we can simply copy the Latin-1 syntax
|
|
310 ;; table. However, the case table isn't yet enabled--see latin.el.
|
|
311
|
|
312 (loop
|
|
313 for i from #xA0 to #xFF
|
|
314 with syntax-table = (standard-syntax-table)
|
|
315 do (modify-syntax-entry
|
|
316 (make-char 'latin-iso8859-9 i)
|
|
317 (string (char-syntax (make-char 'latin-iso8859-1 i)))
|
|
318 syntax-table))
|
|
319
|
|
320 (make-coding-system
|
|
321 'iso-8859-9 'iso2022 "ISO-8859-9 (Latin-5)"
|
|
322 '(charset-g0 ascii
|
|
323 charset-g1 latin-iso8859-9
|
|
324 charset-g2 t
|
|
325 charset-g3 t
|
|
326 mnemonic "MIME/Ltn-5"))
|
|
327
|
|
328 (loop
|
|
329 for ((charset codesys default-input nice-charset-1 nice-charset-2
|
|
330 ;; supported-langs is a list if the doc string is replaced
|
|
331 ;; entirely
|
|
332 supported-langs)
|
|
333 langenvs) in
|
|
334 '(((latin-iso8859-1 iso-8859-1 "latin-1-prefix" "Latin-1" "ISO-8859-1"
|
|
335 " Danish, Dutch, English, Faeroese, Finnish, French, German, Icelandic,
|
|
336 Irish, Italian, Norwegian, Portuguese, Spanish, and Swedish.")
|
|
337 (("Danish" "da")
|
|
338 ("Dutch" "nl" "TUTORIAL.nl")
|
|
339 ("Faeroese")
|
|
340 ("Finnish" "fi")
|
|
341 ("French" "fr" "TUTORIAL.fr" "Bonjour, ,Ag(Ba va?")
|
|
342 ("German" "de" "TUTORIAL.de" "\
|
|
343 German (Deutsch Nord) Guten Tag
|
|
344 German (Deutsch S,A|(Bd) Gr,A|_(B Gott"
|
|
345 "german-postfix")
|
|
346 ("Icelandic" "is")
|
|
347 ("Irish" "ga")
|
|
348 ("Italian" "it")
|
|
349 ("Norwegian" "no" "TUTORIAL.no")
|
|
350 ("Portuguese" "pt" nil "Bem-vindo! Tudo bem?")
|
|
351 ("Spanish" "es" "TUTORIAL.es" ",A!(BHola!")
|
|
352 ("Swedish" "sv" "TUTORIAL.se" "Hej!")))
|
|
353 ((latin-iso8859-15 iso-8859-15 "latin-1-prefix" ;; #### FIXME
|
|
354 "Latin-9" "ISO-8859-15"
|
|
355 ("\
|
|
356 This language environment is a generic one for Latin-9 (ISO-8859-15)
|
|
357 character set which supports the Euro sign and the following languages
|
|
358 (they use the Latin-1 character set by default):
|
|
359 Danish, Dutch, English, Faeroese, Finnish, French, German, Icelandic,
|
|
360 Irish, Italian, Norwegian, Portuguese, Spanish, and Swedish.
|
|
361 Each also has its own specific language environment."))
|
|
362 ())
|
|
363 ((latin-iso8859-2 iso-8859-2 "latin-2-prefix" "Latin-2" "ISO-8859-2"
|
|
364 " Albanian, Czech, English, German, Hungarian, Polish, Romanian,
|
|
365 Serbian, Croatian, Slovak, Slovene, Sorbian (upper and lower),
|
|
366 and Swedish.") ;; " (fontification got screwed up, CVS-20061203)
|
|
367 (("Albanian" nil)
|
|
368 ("Croatian" ("hrvatski" "hr") "TUTORIAL.hr")
|
|
369 ("Czech" ("cs" "cz") "TUTORIAL.cs" "P,Bx(Bejeme v,Ba(Bm hezk,B}(B den!"
|
|
370 "latin-2-postfix")
|
|
371 ("Hungarian" ("hungarian" "hu"))
|
|
372 ("Polish" "po" "TUTORIAL.pl")
|
|
373 ("Romanian" "ro" "TUTORIAL.ro" "Bun,Bc(B ziua, bine a,B~(Bi venit!"
|
|
374 "latin-2-postfix")
|
|
375 ("Serbian" "sr")
|
|
376 ("Slovak" "sk" "TUTORIAL.sk" "Prajeme V,Ba(Bm pr,Bm(Bjemn,B}(B de,Br(B!"
|
|
377 ;; !!#### FSF "slovak"
|
|
378 "latin-2-postfix")
|
|
379 ("Slovenian" "sl" "TUTORIAL.sl" ",B.(Belimo vam uspe,B9(Ben dan!"
|
|
380 "latin-2-postfix")
|
|
381 ("Sorbian" nil)))
|
|
382 ((latin-iso8859-3 iso-8859-3 "latin-3-prefix" "Latin-3" "ISO-8859-3"
|
|
383 " Afrikaans, Catalan, Dutch, English, Esperanto, French, Galician,
|
|
384 German, Italian, Maltese, Spanish, and Turkish.")
|
|
385 (("Afrikaans" "af")
|
|
386 ("Catalan" ("catalan" "ca"))
|
|
387 ("Esperanto")
|
|
388 ("Galician")
|
|
389 ("Maltese")))
|
|
390 ((latin-iso8859-4 iso-8859-4 "latin-4-prefix" "Latin-4" "ISO-8859-4"
|
|
391 " Danish, English, Estonian, Finnish, German, Greenlandic, Lappish,
|
|
392 Latvian, Lithuanian, and Norwegian.")
|
|
393 (("Estonian" "et")
|
|
394 ("Greenlandic")
|
|
395 ("Lappish")
|
|
396 ("Latvian" "lv")
|
|
397 ("Lithuanian" "li")))
|
|
398 ((latin-iso8859-5 iso-8859-9 "latin-5-prefix" "Latin-5" "ISO-8859-9")
|
|
399 (("Turkish" "tr"))))
|
|
400 do
|
|
401 (set-language-info-alist
|
|
402 nice-charset-1
|
|
403 `((charset ascii ,charset)
|
|
404 (coding-system ,codesys)
|
|
405 (coding-priority ,codesys)
|
|
406 (documentation . ,(if (listp supported-langs) (car supported-langs)
|
|
407 (format "\
|
|
408 This language environment is a generic one for %s (%s)
|
|
409 character set which supports the following languages (not all of them may
|
|
410 use this character set by default):
|
|
411 %s
|
|
412 Each also has its own specific language environment."
|
|
413 nice-charset-1 nice-charset-2
|
|
414 supported-langs))))
|
|
415 '("European"))
|
|
416 (loop for (name locale tutorial sample-text input-method) in langenvs
|
|
417 do
|
|
418 (set-language-info-alist
|
|
419 name
|
|
420 `((charset ascii ,charset)
|
|
421 (coding-system ,codesys)
|
|
422 (coding-priority ,codesys)
|
|
423 ,@(if locale `((locale . ,locale)))
|
|
424 ,@(if tutorial `((tutorial . ,tutorial)))
|
|
425 ,@(if sample-text `((sample-text . ,sample-text)))
|
|
426 (input-method . ,(or input-method default-input))
|
|
427 (documentation . ,(format "\
|
|
428 This language environment supports %s using the Latin-1 (ISO-8859-1)
|
|
429 character set. Languages supported by Latin-1 are Danish, Dutch, English,
|
|
430 Faeroese, Finnish, French, German, Icelandic, Irish, Italian, Norwegian,
|
|
431 Portuguese, Spanish, and Swedish. The various language environments for
|
|
432 these languages are similar to the Latin-1 environment, but typically have
|
|
433 their own locale specified (for subprocesses and for selection of the
|
|
434 correct language environment at startup), and may have their own tutorials
|
|
435 and/or a different input method."
|
|
436 name)))
|
|
437 '("European"))
|
|
438 ))
|
|
439
|
|
440 ;;; european.el ends here
|