]> code.delx.au - gnu-emacs/blob - lisp/language/english.el
*** empty log message ***
[gnu-emacs] / lisp / language / english.el
1 ;;; english.el --- support for English -*- no-byte-compile: t -*-
2
3 ;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 ;; Free Software Foundation, Inc.
5 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
6 ;; National Institute of Advanced Industrial Science and Technology (AIST)
7 ;; Registration Number H14PRO021
8
9 ;; Keywords: multibyte character, character set, syntax, category
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;;; Commentary:
29
30 ;; We need nothing special to support English on Emacs. Selecting
31 ;; English as a language environment is one of the ways to reset
32 ;; various multilingual environment to the original settting.
33
34 ;;; Code:
35
36 (set-language-info-alist
37 "English" '((tutorial . "TUTORIAL")
38 (charset ascii)
39 (sample-text . "Hello!, Hi!, How are you?")
40 (documentation . "\
41 Nothing special is needed to handle English.")
42 ))
43
44 ;; Make "ASCII" an alias of "English" language environment.
45 (set-language-info-alist
46 "ASCII" (cdr (assoc "English" language-info-alist)))
47
48 ;;; arch-tag: e440bdb0-91b0-4fb4-ae38-425780f8f745
49 ;;; english.el ends here