Fix up comment convention on the arch-tag lines.
[bpt/emacs.git] / 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
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, or (at your option)
15 ;; 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; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
32 ;;; IPA (International Phonetic Alphabet)
33 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
34
35 (set-language-info-alist
36 "IPA" '((charset . (ipa))
37 (coding-priority iso-2022-7bit)
38 (coding-system iso-2022-7bit)
39 (input-method . "ipa")
40 (nonascii-translation . ipa)
41 (unibyte-display . iso-2022-7bit)
42 (documentation . "\
43 IPA is International Phonetic Alphabet for English, French, German
44 and Italian.")))
45
46 ;; This is for Arabic. But, as we still don't have Arabic language
47 ;; support, we at least define a coding system here.
48
49 (define-coding-system 'iso-8859-6
50 "ISO-8859-6 based encoding (MIME:ISO-8859-6)."
51 :coding-type 'charset
52 :mnemonic ?6
53 :charset-list '(iso-8859-6)
54 :mime-charset 'iso-8859-6)
55
56 (provide 'misc-lang)
57
58 ;; arch-tag: 6953585c-1a1a-4c09-be82-a2518afb6074
59 ;;; misc-lang.el ends here