root/trunk/lisp/language/english.el

Revision 4220, 1.8 kB (checked in by miyoshi, 9 months ago)

Sync up with Emacs22.2.

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