Mercurial > emacs
annotate lisp/language/english.el @ 62897:6181dbed8947
(After a Crash): Mention emacs-buffer.gdb as a recovery mechanism.
author | Noah Friedman <friedman@splode.com> |
---|---|
date | Mon, 30 May 2005 10:48:33 +0000 |
parents | 197607499a29 |
children | 18a818a2ee7c f042e7c0fe20 |
rev | line source |
---|---|
47726
33d53d287ee4
Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents:
38414
diff
changeset
|
1 ;;; english.el --- support for English -*- no-byte-compile: t -*- |
17301 | 2 |
62396 | 3 ;; Copyright (C) 1997 Free Software Foundation, Inc. |
4 ;; Copyright (C) 1997 | |
5 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
6 ;; Registration Number H14PRO021 | |
17301 | 7 |
8 ;; Keywords: multibyte character, character set, syntax, category | |
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 | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; We need nothing special to support English on Emacs. Selecting | |
30 ;; English as a language environment is one of the ways to reset | |
31 ;; various multilingual environment to the original settting. | |
32 | |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
28906
diff
changeset
|
33 ;;; Code: |
17301 | 34 |
35 (set-language-info-alist | |
22981
dfc5c82b7526
(setup-english-environment): Just call
Kenichi Handa <handa@m17n.org>
parents:
21767
diff
changeset
|
36 "English" '((tutorial . "TUTORIAL") |
20744
48d79ef65489
Register coding-priority key in
Kenichi Handa <handa@m17n.org>
parents:
19954
diff
changeset
|
37 (charset ascii) |
17767
d93b9414ff2b
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17301
diff
changeset
|
38 (sample-text . "Hello!, Hi!, How are you?") |
17994
28d45a11ac18
(setup-english-environment): Set several
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
39 (documentation . "\ |
18158
723b3b1516b6
("English"): Improve doc string.
Richard M. Stallman <rms@gnu.org>
parents:
17994
diff
changeset
|
40 Nothing special is needed to handle English.") |
17767
d93b9414ff2b
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17301
diff
changeset
|
41 )) |
17301 | 42 |
19954
9c37afba82bc
(ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents:
19922
diff
changeset
|
43 ;; Make "ASCII" an alias of "English" language environment. |
9c37afba82bc
(ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents:
19922
diff
changeset
|
44 (set-language-info-alist |
9c37afba82bc
(ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents:
19922
diff
changeset
|
45 "ASCII" (cdr (assoc "English" language-info-alist))) |
9c37afba82bc
(ASCII): Define as alias for English.
Richard M. Stallman <rms@gnu.org>
parents:
19922
diff
changeset
|
46 |
52401 | 47 ;;; arch-tag: e440bdb0-91b0-4fb4-ae38-425780f8f745 |
17301 | 48 ;;; english.el ends here |