]> code.delx.au - gnu-emacs/blob - lisp/language/english.el
(ethio-tilde-escape) (ethio-use-three-dot-question): Fix spelling in docstrings.
[gnu-emacs] / lisp / language / english.el
1 ;;; english.el --- support for English -*- no-byte-compile: t -*-
2
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
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
33 ;;; Code:
34
35 (set-language-info-alist
36 "English" '((tutorial . "TUTORIAL")
37 (charset ascii)
38 (sample-text . "Hello!, Hi!, How are you?")
39 (documentation . "\
40 Nothing special is needed to handle English.")
41 ))
42
43 ;; Make "ASCII" an alias of "English" language environment.
44 (set-language-info-alist
45 "ASCII" (cdr (assoc "English" language-info-alist)))
46
47 ;;; arch-tag: e440bdb0-91b0-4fb4-ae38-425780f8f745
48 ;;; english.el ends here