emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/language/european.el [emacs-unicode-


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/lisp/language/european.el [emacs-unicode-2]
Date: Mon, 08 Sep 2003 08:55:25 -0400

Index: emacs/lisp/language/european.el
diff -c /dev/null emacs/lisp/language/european.el:1.86.4.1
*** /dev/null   Mon Sep  8 08:55:25 2003
--- emacs/lisp/language/european.el     Mon Sep  8 08:53:41 2003
***************
*** 0 ****
--- 1,729 ----
+ ;;; european.el --- support for European languages -*- coding: iso-2022-7bit; 
-*-
+ 
+ ;; Copyright (C) 1995, 1997, 2001 Electrotechnical Laboratory, JAPAN.
+ ;;   Licensed to the Free Software Foundation.
+ ;; Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+ ;; Copyright (C) 2003
+ ;;   National Institute of Advanced Industrial Science and Technology (AIST)
+ ;;   Registration Number H13PRO009
+ 
+ ;; Keywords: multilingual, European
+ 
+ ;; This file is part of GNU Emacs.
+ 
+ ;; GNU Emacs is free software; you can redistribute it and/or modify
+ ;; it under the terms of the GNU General Public License as published by
+ ;; the Free Software Foundation; either version 2, or (at your option)
+ ;; any later version.
+ 
+ ;; GNU Emacs is distributed in the hope that it will be useful,
+ ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ ;; GNU General Public License for more details.
+ 
+ ;; You should have received a copy of the GNU General Public License
+ ;; along with GNU Emacs; see the file COPYING.  If not, write to the
+ ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ ;; Boston, MA 02111-1307, USA.
+ 
+ ;;; Commentary:
+ 
+ ;; For European scripts, character sets ISO8859-1,2,3,4,9,10,13,14,15,
+ ;; windows-1250,2,4,7, mac-roman, adobe-standard-encoding, cp850 and
+ ;; next are supported.
+ 
+ ;;; Code:
+ 
+ ;; Latin-1 (ISO-8859-1)
+ 
+ (set-language-info-alist
+  "Latin-1" '((charset iso-8859-1)
+            (coding-system iso-latin-1 iso-latin-9 windows-1252)
+            (coding-priority iso-latin-1)
+            (nonascii-translation . iso-8859-1)
+            (unibyte-display . iso-latin-1)
+            (input-method . "latin-1-prefix")
+            (sample-text
+             . "Hello, Hej, Tere, Hei, Bonjour, Gr,A|_(B Gott, Ciao, 
,A!(BHola!")
+            (documentation . "\
+ This language environment is a generic one for the Latin-1 (ISO-8859-1)
+ character set which supports the following European languages:
+  Albanian, Basque, Breton, Catalan, Danish, Dutch, English, Faeroese,
+  Finnish, French (with restrictions -- see Latin-9), Frisian, Galician,
+  German, Greenlandic, Icelandic, Irish Gaelic (new orthography),
+  Italian, Latin, Luxemburgish, Norwegian, Portuguese, Rhaeto-Romanic,
+  Scottish Gaelic, Spanish, and Swedish.
+ We also have specific language environments for the following languages:
+   For Dutch, \"Dutch\".
+   For German, \"German\".
+   For French, \"French\".
+   For Italian, \"Italian\".
+   For Slovenian, \"Slovenian\".
+   For Spanish, \"Spanish\".
+ 
+ Latin-1 also covers several written languages outside Europe, including
+ Indonesian/Malay, Tagalog (Philippines), Swahili and Afrikaans."))
+  '("European"))
+ 
+ 
+ ;; Latin-2 (ISO-8859-2)
+ 
+ (define-coding-system 'iso-latin-2
+    "ISO 2022 based 8-bit encoding for Latin-2 (MIME:ISO-8859-2)."
+   :coding-type 'charset
+   :mnemonic ?2
+   :charset-list '(iso-8859-2)
+   :mime-charset 'iso-8859-2)
+ 
+ (define-coding-system-alias 'iso-8859-2 'iso-latin-2)
+ (define-coding-system-alias 'latin-2 'iso-latin-2)
+ 
+ (set-language-info-alist
+  "Latin-2" '((charset iso-8859-2)
+            (coding-system iso-latin-2 windows-1250)
+            (coding-priority iso-latin-2)
+            (nonascii-translation . iso-8859-2)
+            (unibyte-display . iso-latin-2)
+            (input-method . "latin-2-prefix")
+            (documentation . "\
+ This language environment is a generic one for the Latin-2 (ISO-8859-2)
+ character set which supports the following languages:
+  Albanian, Czech, English, German, Hungarian, Polish, Romanian,
+  Serbo-Croatian or Croatian, Slovak, Slovene, Sorbian (upper and lower),
+  and Swedish.
+ We also have specific language environments for the following languages:
+   For Czech, \"Czech\".
+   For Croatian, \"Croatian\".
+   For Polish, \"Polish\".
+   For Romanian, \"Romanian\".
+   For Slovak, \"Slovak\"."))
+  '("European"))
+ 
+ 
+ ;; Latin-3 (ISO-8859-3)
+ 
+ (define-coding-system 'iso-latin-3
+   "ISO 2022 based 8-bit encoding for Latin-3 (MIME:ISO-8859-3)."
+   :coding-type 'charset
+   :mnemonic ?3
+   :charset-list '(iso-8859-3)
+   :mime-charset 'iso-8859-3)
+ 
+ (define-coding-system-alias 'iso-8859-3 'iso-latin-3)
+ (define-coding-system-alias 'latin-3 'iso-latin-3)
+ 
+ (set-language-info-alist
+  "Latin-3" '((charset iso-8859-3)
+            (coding-system iso-latin-3)
+            (coding-priority iso-latin-3)
+            (nonascii-translation . iso-8859-3)
+            (unibyte-display . iso-latin-3)
+            (input-method . "latin-3-prefix")
+            (documentation . "\
+ These languages are supported with the Latin-3 (ISO-8859-3) character set:
+  Afrikaans, Catalan, Dutch, English, Esperanto, French, Galician,
+  German, Italian, Maltese, Spanish, and Turkish."))
+  '("European"))
+ 
+ 
+ ;; Latin-4 (ISO-8859-4)
+ 
+ (define-coding-system 'iso-latin-4
+   "ISO 2022 based 8-bit encoding for Latin-4 (MIME:ISO-8859-4)."
+   :coding-type 'charset
+   :mnemonic ?4
+   :charset-list '(iso-8859-4)
+   :mime-charset 'iso-8859-4)
+ 
+ (define-coding-system-alias 'iso-8859-4 'iso-latin-4)
+ (define-coding-system-alias 'latin-4 'iso-latin-4)
+ 
+ (set-language-info-alist
+  "Latin-4" '((charset iso-8859-4)
+            (coding-system iso-8859-4)
+            (coding-priority iso-8859-4)
+            (nonascii-translation . iso-8859-4)
+            (unibyte-display . iso-8859-4)
+            (input-method . "latin-4-postfix")
+            (documentation . "\
+ These languages are supported with the Latin-4 (ISO-8859-4) character set:
+  Danish, English, Estonian, Finnish, German, Greenlandic, Lappish,
+  Latvian, Lithuanian, and Norwegian."))
+  '("European"))
+ 
+ 
+ ;; Latin-5 (ISO-8859-9)
+ 
+ (define-coding-system 'iso-latin-5
+   "ISO 2022 based 8-bit encoding for Latin-5 (MIME:ISO-8859-9)."
+   :coding-type 'charset
+   :mnemonic ?9
+   :charset-list '(iso-8859-9)
+   :mime-charset 'iso-8859-9)
+ 
+ (define-coding-system-alias 'iso-8859-9 'iso-latin-5)
+ (define-coding-system-alias 'latin-5 'iso-latin-5)
+ 
+ (set-language-info-alist
+  "Latin-5" '((charset iso-8859-9)
+            (coding-system iso-latin-5)
+            (coding-priority iso-latin-5)
+            (nonascii-translation . iso-8859-9)
+            (unibyte-display . iso-latin-5)
+            (input-method . "latin-5-postfix")
+            (documentation . "Support for Latin-5.\
+ See also the Turkish environment."))
+  '("European"))
+ 
+ 
+ ;; Latin-6 (ISO-8859-10)
+ 
+ (define-coding-system 'iso-latin-6
+   "ISO 2022 based 8-bit encoding for Latin-6 (MIME:ISO-8859-10)."
+   :coding-type 'charset
+   :mnemonic ?9
+   :charset-list '(iso-8859-10)
+   :mime-charset 'iso-8859-10)
+ 
+ (define-coding-system-alias 'iso-8859-10 'iso-latin-6)
+ (define-coding-system-alias 'latin-6 'iso-latin-6)
+ 
+ (set-language-info-alist
+  "Latin-6" '((charset iso-8859-10)
+            (coding-system iso-latin-6)
+            (coding-priority iso-latin-6)
+            (nonascii-translation . iso-8859-10)
+            (unibyte-display . iso-latin-6)
+            ;; Fixme: input method.
+            (documentation . "Support for generic Latin-6 (Northern 
European)."))
+  '("European"))
+ 
+ 
+ ;; Latin-7 (ISO-8859-13)
+ 
+ (define-coding-system 'iso-latin-7
+   "ISO 2022 based 8-bit encoding for Latin-7 (MIME:ISO-8859-13)."
+   :coding-type 'charset
+   :mnemonic ?9
+   :charset-list '(iso-8859-13)
+   :mime-charset 'iso-8859-13)
+ 
+ (define-coding-system-alias 'iso-8859-13 'iso-latin-7)
+ (define-coding-system-alias 'latin-7 'iso-latin-7)
+ 
+ (set-language-info-alist
+  "Latin-7" '((charset iso-8859-13)
+            (coding-system iso-latin-7)
+            (coding-priority iso-latin-7)
+            (nonascii-translation . iso-8859-13)
+            (unibyte-display . iso-latin-7)
+            ;; Fixme: input method.
+            (documentation . "Support for generic Latin-7 (Baltic Rim)."))
+  '("European"))
+ 
+ ;; Latin-8 (ISO-8859-14)
+ 
+ (define-coding-system 'iso-latin-8
+   "ISO 2022 based 8-bit encoding for Latin-8 (MIME:ISO-8859-14)."
+   :coding-type 'charset
+   ;; `W' for `Welsh', since `C' for `Celtic' is taken.
+   :mnemonic ?W                                
+   :charset-list '(iso-8859-14)
+   :mime-charset 'iso-8859-14)
+ 
+ (define-coding-system-alias 'iso-8859-14 'iso-latin-8)
+ (define-coding-system-alias 'latin-8 'iso-latin-8)
+ 
+ (set-language-info-alist
+  "Latin-8" '((charset iso-8859-14)
+            (coding-system iso-latin-8)
+            (coding-priority iso-latin-8)
+            (nonascii-translation . iso-8859-14)
+            (unibyte-display . iso-latin-8)
+            (input-method . "latin-8-prefix")
+            ;; Fixme: Welsh/Ga{e}lic greetings
+            (sample-text . ",_"(B ,_p(B ,_^(B")
+            (documentation . "\
+ This language environment is a generic one for the Latin-8 (ISO-8859-14)
+ character set which supports the Celtic languages, including those not
+ covered by other ISO-8859 character sets:
+  Welsh, Manx Gaelic and Irish Gaelic (old orthography)."))
+  '("European"))
+ 
+ ;; Latin-9 (ISO-8859-15)
+ 
+ (define-coding-system 'iso-latin-9
+   "ISO 2022 based 8-bit encoding for Latin-9 (MIME:ISO-8859-15)."
+   :coding-type 'charset
+   ;; `0' for `Latin-0'
+   :mnemonic ?0
+   :charset-list '(iso-8859-15)
+   :mime-charset 'iso-8859-15)
+ 
+ (define-coding-system-alias 'iso-8859-15 'iso-latin-9)
+ (define-coding-system-alias 'latin-9 'iso-latin-9)
+ (define-coding-system-alias 'latin-0 'iso-latin-9)
+ 
+ (set-language-info-alist
+  "Latin-9" '((charset iso-8859-15)
+            (coding-system iso-latin-9)
+            (coding-priority iso-latin-9)
+            (nonascii-translation . iso-8859-15)
+            (unibyte-display . iso-latin-9)
+            (input-method . "latin-9-prefix")
+            (sample-text
+             . "AVE. ,b&(48<=>(B ,b$(B")
+            (documentation . "\
+ This language environment is a generic one for the Latin-9 (ISO-8859-15)
+ character set which supports the same languages as Latin-1 with the
+ addition of the Euro sign and some additional French and Finnish letters.
+ Latin-9 is sometimes nicknamed `Latin-0'."))
+  '("European"))
+ 
+ (define-coding-system 'windows-1250
+   "windows-1250 (Central European) encoding (MIME: WINDOWS-1250)"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(windows-1250)
+   :mime-charset 'windows-1250)
+ (define-coding-system-alias 'cp1250 'windows-1250)
+ 
+ (define-coding-system 'windows-1252
+   "windows-1252 (Western European) encoding (MIME: WINDOWS-1252)"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(windows-1252)
+   :mime-charset 'windows-1252)
+ (define-coding-system-alias 'cp1252 'windows-1252)
+ 
+ (define-coding-system 'windows-1254
+   "windows-1254 (Turkish) encoding (MIME: WINDOWS-1254)"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(windows-1254)
+   :mime-charset 'windows-1254)
+ (define-coding-system-alias 'cp1254 'windows-1254)
+ 
+ (define-coding-system 'windows-1257
+   "windows-1257 (Baltic) encoding (MIME: WINDOWS-1257)"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(windows-1257)
+   :mime-charset 'windows-1257)
+ (define-coding-system-alias 'cp1257 'windows-1257)
+ 
+ (define-coding-system 'cp850
+   "DOS codepage 850 (Western European)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp850)
+   :mime-charset 'cp850)
+ (define-coding-system-alias 'ibm850 'cp850)
+ 
+ (define-coding-system 'cp852
+   "DOS codepage 852 (Slavic)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp852)
+   :mime-charset 'cp852)
+ (define-coding-system-alias 'ibm852 'cp852)
+ 
+ (define-coding-system 'cp857
+   "DOS codepage 857 (Turkish)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp857)
+   :mime-charset 'cp857)
+ (define-coding-system-alias 'ibm857 'cp857)
+ 
+ (define-coding-system 'cp858
+   "Codepage 858 (Multilingual Latin I + Euro)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp858)
+   :mime-charset 'cp858)
+ 
+ (define-coding-system 'cp860
+   "DOS codepage 860 (Portuguese)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp860)
+   :mime-charset 'cp860)
+ (define-coding-system-alias 'ibm860 'cp860)
+ 
+ (define-coding-system 'cp861
+   "DOS codepage 861 (Icelandic)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp861)
+   :mime-charset 'cp861)
+ (define-coding-system-alias 'ibm861 'cp861)
+ 
+ (define-coding-system 'cp863
+   "DOS codepage 863 (French Canadian)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp863)
+   :mime-charset 'cp863)
+ (define-coding-system-alias 'ibm863 'cp863)
+ 
+ (define-coding-system 'cp865
+   "DOS codepage 865 (Norwegian/Danish)"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp865)
+   :mime-charset 'cp865)
+ (define-coding-system-alias 'ibm865 'cp865)
+ 
+ (define-coding-system 'cp437
+   "DOS codepage 437"
+   :coding-type 'charset
+   :mnemonic ?D
+   :charset-list '(cp437)
+   :mime-charset 'cp437)
+ (define-coding-system-alias 'ibm437 'cp437)
+ 
+ (set-language-info-alist
+  "Dutch" '((tutorial . "TUTORIAL.nl")
+          (charset iso-8859-1)
+          (coding-system iso-latin-1 iso-latin-9)
+          (coding-priority iso-latin-1)
+          (nonascii-translation . iso-8859-1)
+          (unibyte-display . iso-latin-1)
+          (input-method . "dutch")
+          (sample-text . "Er is een aantal manieren waarop je dit kan doen")
+          (documentation . "\
+ This language environment is almost the same as Latin-1,
+ but it selects the Dutch tutorial and input method."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "German" '((tutorial . "TUTORIAL.de")
+           (charset iso-8859-1)
+           (coding-system iso-latin-1 iso-latin-9)
+           (coding-priority iso-latin-1)
+           (nonascii-translation . iso-8859-1)
+           (input-method . "german-postfix")
+           (unibyte-display . iso-latin-1)
+           (sample-text . "\
+ German (Deutsch Nord) Guten Tag
+ German (Deutsch S,A|(Bd)    Gr,A|_(B Gott")
+           (documentation . "\
+ This language environment is almost the same as Latin-1,
+ but sets the default input method to \"german-postfix\".
+ Additionally, it selects the German tutorial."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "French" '((tutorial . "TUTORIAL.fr")
+           (charset iso-8859-1)
+           (coding-system iso-latin-1 iso-latin-9)
+           (coding-priority iso-latin-1)
+           (nonascii-translation . iso-8859-1)
+           (unibyte-display . iso-latin-1)
+           (input-method . "latin-1-prefix")
+           (sample-text . "French (Fran,Ag(Bais)     Bonjour, Salut")
+           (documentation . "\
+ This language environment is almost the same as Latin-1,
+ but it selects the French tutorial and input method."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Italian" '((tutorial . "TUTORIAL.it")
+           (charset iso-8859-1)
+           (coding-system iso-latin-1 iso-latin-9)
+           (coding-priority iso-latin-1)
+           (nonascii-translation . iso-8859-1)
+           (unibyte-display . iso-latin-1)
+           (input-method . "italian-postfix")
+           (sample-text . "Salve, ciao!")
+           (documentation . "\
+ This language environment is almost the same as Latin-1,
+ but sets the default input method to \"italian-postfix\".
+ Additionally, it selects the Italian tutorial."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Slovenian" '((charset iso-8859-2)
+             (coding-system . (iso-8859-2 windows-1250))
+             (coding-priority . (iso-8859-2))
+             (nonascii-translation . iso-8859-2)
+             (input-method . "slovenian")
+             (unibyte-display . iso-8859-2)
+             (tutorial . "TUTORIAL.sl")
+             (sample-text . ",B.(Belimo vam uspe,B9(Ben dan!")
+             (documentation . "\
+ This language environment is almost the same as Latin-2,
+ but it selects the Slovenian tutorial and input method."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Spanish" '((tutorial . "TUTORIAL.es")
+           (charset iso-8859-1)
+           (coding-system iso-latin-1 iso-latin-9)
+           (coding-priority iso-latin-1)
+           (input-method . "spanish-postfix")
+           (nonascii-translation . iso-8859-1)
+           (unibyte-display . iso-latin-1)
+           (sample-text . "Spanish (Espa,Aq(Bol)     ,A!(BHola!")
+           (documentation . "\
+ This language environment is almost the same as Latin-1,
+ but it sets the default input method to \"spanish-postfix\",
+ and it selects the Spanish tutorial."))
+  '("European"))
+ 
+ ;; For Turkish, the character set ISO-8859-9 (Latin-5) is used.  But,
+ ;; before the introduction of ISO-8859-9 in 1988, ISO-8859-3 (Latin-3)
+ ;; was used for Turkish.  Those who use Latin-3 for Turkish should use
+ ;; "Latin-3" language environment.
+ 
+ (set-language-info-alist
+  "Turkish" '((charset iso-8859-9)
+            (coding-system iso-latin-5 windows-1254 iso-latin-3)
+            (coding-priority iso-latin-5)
+            (nonascii-translation . iso-8859-9)
+            (unibyte-display . iso-latin-5)
+            (input-method . "turkish-postfix")
+            (sample-text . "Turkish (T,M|(Brk,Mg(Be)       Merhaba")
+            (setup-function
+             . (lambda ()
+                 (set-case-syntax-pair ?I ?,C9(B (standard-case-table))
+                 (set-case-syntax-pair ?,C)(B ?i (standard-case-table))))
+            (exit-function
+             . (lambda ()
+                 (set-case-syntax-pair ?I ?i (standard-case-table))
+                 (set-case-syntax ?,C9(B "w" (standard-case-table))
+                 (set-case-syntax ?,C)(B "w" (standard-case-table))))
+            (documentation . "Support for Turkish.
+ Differs from the Latin-5 environment in using the `turkish-postfix' input
+ method and applying Turkish case rules for the characters i, I, ,C9(B, 
,C)(B.")))
+ 
+ ;; Polish ISO 8859-2 environment.
+ ;; Maintainer: Wlodek Bzyl <address@hidden>
+ ;; Keywords: multilingual, Polish
+ 
+ (set-language-info-alist
+  "Polish" '((charset iso-8859-2)
+          (coding-system iso-8859-2 windows-1250)
+          (coding-priority iso-8859-2)
+          (input-method . "polish-slash")
+          (nonascii-translation . iso-8859-2)
+          (unibyte-display . iso-8859-2)
+          (tutorial . "TUTORIAL.pl")
+          (sample-text . "P,Bs(Bjd,B<(B, ki,Bq(B-,B?(Be t,Bj(B 
chmurno,B6f(B w g,B31(Bb flaszy")
+          (documentation . t))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Welsh" `((coding-system utf-8 latin-8) ; the input method is Unicode-based
+          (coding-priority utf-8 latin-8)
+          (nonascii-translation . iso-8859-14)
+          (input-method . "welsh")
+          (documentation . "Support for Welsh, using Unicode."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Latin-6" `((coding-system latin-6)
+            (coding-priority latin-6)
+            (nonascii-translation . ,(get 'decode-iso-latin-6 
'translation-table))
+            (input-method . "latin-prefix")
+            (features code-pages)
+            (documentation . "Support for Latin-6."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Latin-7" `((coding-system latin-7)
+            (coding-priority latin-7)
+            (nonascii-translation . iso-8859-13)
+            (input-method . "latin-prefix")
+            (documentation . "Support for Latin-7, e.g. Latvian, Lithuanian."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Lithuanian" `((coding-system latin-7 windows-1257)
+               (coding-priority latin-7)
+               (nonascii-translation . iso-8859-13)
+               (input-method . "lithuanian-keyboard")
+               (documentation . "Support for Lithuanian."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Latvian" `((coding-system latin-7 windows-1257)
+            (coding-priority latin-7)
+            (nonascii-translation . iso-8859-13)
+            (input-method . "latvian-keyboard")
+            (documentation . "Support for Latvian."))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Swedish" '((tutorial . "TUTORIAL.sv")
+           (charset iso-8859-1)
+           (coding-system iso-latin-1)
+           (coding-priority iso-latin-1)
+           (nonascii-translation . iso-8859-1)
+           (unibyte-display . iso-latin-1)
+           (sample-text . "Goddag Hej")
+           (documentation . "Support for Swedish"))
+  '("European"))
+ 
+ (set-language-info-alist
+  "Croatian" '((charset iso-8859-2)
+             (coding-system iso-8859-2)
+             (coding-priority iso-8859-2)
+             (input-method . "croatian")
+             (nonascii-translation . iso-8859-2)
+             (unibyte-display . iso-8859-2)
+             (documentation . "Support for Croatian with Latin-2 encoding."))
+  '("European"))
+ 
+ 
+ (define-coding-system 'mac-roman
+   "Mac Roman Encoding (MIME:MACINTOSH)."
+   :coding-type 'charset
+   :mnemonic ?M 
+   :charset-list '(mac-roman)
+   :mime-charset 'macintosh)
+ 
+ (define-coding-system 'next
+   "NeXTstep encoding"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(next)
+   :mime-charset 'next)
+ 
+ (define-coding-system 'hp-roman8
+   "Hewlet-Packard roman-8 encoding (MIME:ROMAN-8)"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(hp-roman8)
+   :mime-charset 'hp-roman8)
+ (define-coding-system-alias 'roman8 'hp-roman8)
+ 
+ (define-coding-system 'adobe-standard-encoding
+   "Adobe `standard' encoding for PostScript"
+   :coding-type 'charset
+   :mnemonic ?*
+   :charset-list '(adobe-standard-encoding)
+   :mime-charset 'adobe-standard-encoding)
+ 
+ 
+ ;; For automatic composing of diacritics and combining marks.
+ (dolist (range '( ;; combining diacritical marks
+                (#x0300 #x0314 (tc . bc))
+                (#x0315        (tr . bl))
+                (#x0316 #x0319 (bc . tc))
+                (#x031A        (tr . cl))
+                (#x031B #x0320 (bc . tc))
+                (#x0321        (Br . tr))
+                (#x0322        (Br . tl))
+                (#x0323 #x0333 (bc . tc))
+                (#x0334 #x0338 (Bc . Bc))
+                (#x0339 #x033C (bc . tc))
+                (#x033D #x033F (tc . bc))
+                (#x0340        (tl . bc))
+                (#x0341        (tr . bc))
+                (#x0342 #x0344 (tc . bc))
+                (#x0345        (bc . tc))
+                (#x0346        (tc . bc))
+                (#x0347 #x0349 (bc . tc))
+                (#x034A #x034C (tc . bc))
+                (#x034D #x034E (bc . tc))
+                ;; combining diacritical marks for symbols
+                (#x20D0 #x20D1 (tc . bc))
+                (#x20D2 #x20D3 (Bc . Bc))
+                (#x20D4 #x20D7 (tc . bc))
+                (#x20D8 #x20DA (Bc . Bc))
+                (#x20DB #x20DC (tc . bc))
+                (#x20DD #x20E0 (Bc . Bc))
+                (#x20E1        (tc . bc))
+                (#x20E2 #x20E3 (Bc . Bc))))
+   (let* ((from (car range))
+        (to (if (= (length range) 3)
+                (nth 1 range)
+              from))
+        (composition (car (last range))))
+     (while (<= from to)
+       (put-char-code-property from 'diacritic-composition composition)
+       (aset composition-function-table from 'diacritic-composition-function)
+       (setq from (1+ from)))))
+ 
+ (defconst diacritic-composition-pattern "\\C^\\c^+")
+ 
+ (defun diacritic-compose-region (beg end)
+   "Compose diacritic characters in the region.
+ When called from a program, expects two arguments,
+ positions (integers or markers) specifying the region."
+   (interactive "r")
+   (save-restriction
+     (narrow-to-region beg end)
+     (goto-char (point-min))
+     (while (re-search-forward diacritic-composition-pattern nil t)
+       (compose-region (match-beginning 0) (match-end 0)))))
+ 
+ (defun diacritic-compose-string (string)
+   "Compose diacritic characters in STRING and return the resulting string."
+   (let ((idx 0))
+     (while (setq idx (string-match diacritic-composition-pattern string idx))
+       (compose-string string idx (match-end 0))
+       (setq idx (match-end 0))))
+   string)
+ 
+ (defun diacritic-compose-buffer ()
+   "Compose diacritic characters in the current buffer."
+   (interactive)
+   (diacritic-compose-region (point-min) (point-max)))
+ 
+ (defun diacritic-post-read-conversion (len)
+   (diacritic-compose-region (point) (+ (point) len))
+   len)
+ 
+ (defun diacritic-composition-function (pos &optional string)
+   "Compose diacritic text around POS.
+ Optional 2nd argument STRING, if non-nil, is a string containing text
+ to compose.
+ 
+ The return value is the end position of composed characters,
+ or nil if no characters are composed."
+   (setq pos (1- pos))
+   (if string
+       (let ((ch (aref string pos))
+           start end components ch composition)
+       (when (and (>= pos 0)
+                  ;; Previous character is latin.
+                  (aref (char-category-set ch) ?l)
+                  (/= ch 32))
+         (setq start pos
+               end (length string)
+               components (list ch)
+               pos (1+ pos))
+         (while (and
+                 (< pos end)
+                 (setq ch (aref string pos)
+                       composition
+                       (get-char-code-property ch 'diacritic-composition)))
+           (setq components (cons ch (cons composition components))
+                 pos (1+ pos)))
+         (compose-string string start pos (nreverse components))
+         pos))
+     (let ((ch (char-after pos))
+         start end components composition)
+       (when (and (>= pos (point-min))
+                (aref (char-category-set ch) ?l)
+                (/= ch 32))
+       (setq start pos
+             end (point-max)
+             components (list ch)
+             pos (1+ pos))
+       (while (and
+               (< pos end)
+               (setq ch (char-after pos)
+                     composition
+                     (get-char-code-property ch 'diacritic-composition)))
+         (setq components (cons ch (cons composition components))
+               pos (1+ pos)))
+       (compose-region start pos (nreverse components))
+       pos))))
+ 
+ (provide 'european)
+ 
+ ;;; european.el ends here




reply via email to

[Prev in Thread] Current Thread [Next in Thread]