Update AIST copyright years.
[bpt/emacs.git] / lisp / language / misc-lang.el
CommitLineData
0a10297a 1;;; misc-lang.el --- support for miscellaneous languages (characters) -*- no-byte-compile: t -*-
4ed46869 2
7976eda0
KH
3;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4;; 2005, 2006
eaa61218
KH
5;; National Institute of Advanced Industrial Science and Technology (AIST)
6;; Registration Number H14PRO021
4ed46869
KH
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 2, 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
369314dc 23;; along with GNU Emacs; see the file COPYING. If not, write to the
3a35cf56
LK
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
4ed46869 26
60370d40
PJ
27;;; Commentary:
28
29;;; Code:
30
4ed46869
KH
31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
32;;; IPA (International Phonetic Alphabet)
33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
34
3c606ef4 35(set-language-info-alist
8f76845d 36 "IPA" '((charset . (ipa))
40e8f3ad
KH
37 (coding-priority iso-2022-7bit)
38 (coding-system iso-2022-7bit)
8f76845d
KH
39 (input-method . "ipa")
40 (nonascii-translation . ipa)
41 (unibyte-display . iso-2022-7bit)
3c606ef4
KH
42 (documentation . "\
43IPA is International Phonetic Alphabet for English, French, German
44and Italian.")))
45
41da80b1
DL
46(provide 'misc-lang)
47
ab5796a9 48;;; arch-tag: 6953585c-1a1a-4c09-be82-a2518afb6074
4ed46869 49;;; misc-lang.el ends here