Mercurial > emacs
annotate lisp/language/misc-lang.el @ 76705:e61171cf2862
(testcover-start, testcover-end, testcover-mark-all, testcover-unmark-all): Add
prompts to interactive specs.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 24 Mar 2007 15:53:07 +0000 |
parents | a0b90c38e931 |
children | 2c775ed8fc89 95d0cdf160ea |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
38414
diff
changeset
|
1 ;;; misc-lang.el --- support for miscellaneous languages (characters) -*- no-byte-compile: t -*- |
17052 | 2 |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
75364 | 4 ;; 2005, 2006, 2007 |
62396 | 5 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
6 ;; Registration Number H14PRO021 | |
17052 | 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 | |
17071 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
17052 | 26 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
27 ;;; Commentary: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
28 |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
29 ;;; Code: |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33778
diff
changeset
|
30 |
17052 | 31 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
32 ;;; IPA (International Phonetic Alphabet) | |
33 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
34 | |
18554
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
35 (set-language-info-alist |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
36 "IPA" '((charset . (ipa)) |
22713
e7e1cecf3a1c
("IPA"): Add coding-priority and coding-system.
Kenichi Handa <handa@m17n.org>
parents:
18554
diff
changeset
|
37 (coding-priority iso-2022-7bit) |
e7e1cecf3a1c
("IPA"): Add coding-priority and coding-system.
Kenichi Handa <handa@m17n.org>
parents:
18554
diff
changeset
|
38 (coding-system iso-2022-7bit) |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
39 (input-method . "ipa") |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
40 (nonascii-translation . ipa) |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
41 (unibyte-display . iso-2022-7bit) |
18554
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
42 (documentation . "\ |
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
43 IPA is International Phonetic Alphabet for English, French, German |
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
44 and Italian."))) |
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
45 |
33778 | 46 (provide 'misc-lang) |
47 | |
52401 | 48 ;;; arch-tag: 6953585c-1a1a-4c09-be82-a2518afb6074 |
17052 | 49 ;;; misc-lang.el ends here |