]> code.delx.au - gnu-emacs/blob - lisp/language/misc-lang.el
Add 2010 to copyright years.
[gnu-emacs] / lisp / language / misc-lang.el
1 ;;; misc-lang.el --- support for miscellaneous languages (characters) -*- no-byte-compile: t -*-
2
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010
5 ;; National Institute of Advanced Industrial Science and Technology (AIST)
6 ;; Registration Number H14PRO021
7
8 ;; Keywords: multilingual, character set, coding system
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
30 ;;; IPA (International Phonetic Alphabet)
31 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
32
33 (set-language-info-alist
34 "IPA" '((charset . (ipa))
35 (coding-priority utf-8)
36 (coding-system utf-8)
37 (input-method . "ipa")
38 (nonascii-translation . ipa)
39 (documentation . "\
40 IPA is International Phonetic Alphabet for English, French, German
41 and Italian.")))
42
43 ;; This is for Arabic. But, as we still don't have Arabic language
44 ;; support, we at least define a coding system here.
45
46 (define-coding-system 'iso-8859-6
47 "ISO-8859-6 based encoding (MIME:ISO-8859-6)."
48 :coding-type 'charset
49 :mnemonic ?6
50 :charset-list '(iso-8859-6)
51 :mime-charset 'iso-8859-6)
52
53 (provide 'misc-lang)
54
55 ;; arch-tag: 6953585c-1a1a-4c09-be82-a2518afb6074
56 ;;; misc-lang.el ends here