Mercurial > emacs
annotate lisp/language/misc-lang.el @ 31213:9efb8adfefa4
* regex.c: Indent cpp directives and remove parens after `defined'.
(PTR_TO_OFFSET, POS_AS_IN_BUFFER): Move to a better place.
(ISDIGIT, ISCNTRL, ISXDIGIT) [!emacs]: Remove duplicate definition.
(regex_compile): Use RE_FRUGAL instead of RE_ALL_GREEDY.
(re_compile_pattern): Use size_t for length.
(init_syntax_once): Move to a better place.
* regex.h: Merge changes from GNU libc. Indent cpp directives.
(RE_FRUGAL): Replaces RE_ALL_GREEDY (inverted meaning).
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 28 Aug 2000 00:37:24 +0000 |
parents | 60eb71a9f901 |
children | 6d966e8b4bbe |
rev | line source |
---|---|
17052 | 1 ;;; misc-lang.el --- support for miscellaneous languages (characters) |
2 | |
3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18309
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
17052 | 5 |
6 ;; Keywords: multilingual, character set, coding system | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
17071 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
17052 | 24 |
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
26 ;;; IPA (International Phonetic Alphabet) | |
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
28 | |
18554
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
29 (set-language-info-alist |
22982
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
30 "IPA" '((charset . (ipa)) |
22713
e7e1cecf3a1c
("IPA"): Add coding-priority and coding-system.
Kenichi Handa <handa@m17n.org>
parents:
18554
diff
changeset
|
31 (coding-priority iso-2022-7bit) |
e7e1cecf3a1c
("IPA"): Add coding-priority and coding-system.
Kenichi Handa <handa@m17n.org>
parents:
18554
diff
changeset
|
32 (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
|
33 (input-method . "ipa") |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
34 (nonascii-translation . ipa) |
5fef9d1a7fc2
(setup-XXX-environment): Just call set-language-environment. If
Kenichi Handa <handa@m17n.org>
parents:
22713
diff
changeset
|
35 (unibyte-display . iso-2022-7bit) |
18554
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
36 (documentation . "\ |
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
37 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
|
38 and Italian."))) |
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
39 |
17052 | 40 ;;; misc-lang.el ends here |
18554
179c8135c9b1
Call set-language-info-alist for IPA.
Kenichi Handa <handa@m17n.org>
parents:
18377
diff
changeset
|
41 |