2002-10-01 17:06:54 +00:00
|
|
|
;;; english.el --- support for English -*- no-byte-compile: t -*-
|
1997-04-05 02:44:02 +00:00
|
|
|
|
2007-01-21 03:53:13 +00:00
|
|
|
;; Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007
|
2006-12-10 00:31:06 +00:00
|
|
|
;; Free Software Foundation, Inc.
|
2007-01-21 03:53:13 +00:00
|
|
|
;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
|
2005-05-16 07:03:28 +00:00
|
|
|
;; National Institute of Advanced Industrial Science and Technology (AIST)
|
|
|
|
;; Registration Number H14PRO021
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
;; Keywords: multibyte character, character set, syntax, category
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2007-07-25 07:41:05 +00:00
|
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
1997-04-05 02:44:02 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 17:55:18 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; We need nothing special to support English on Emacs. Selecting
|
|
|
|
;; English as a language environment is one of the ways to reset
|
|
|
|
;; various multilingual environment to the original settting.
|
|
|
|
|
2001-07-15 19:53:53 +00:00
|
|
|
;;; Code:
|
1997-04-05 02:44:02 +00:00
|
|
|
|
|
|
|
(set-language-info-alist
|
1998-08-10 06:29:02 +00:00
|
|
|
"English" '((tutorial . "TUTORIAL")
|
1998-01-22 01:48:25 +00:00
|
|
|
(charset ascii)
|
1997-05-12 07:00:08 +00:00
|
|
|
(sample-text . "Hello!, Hi!, How are you?")
|
1997-05-28 03:40:44 +00:00
|
|
|
(documentation . "\
|
1997-06-07 06:20:06 +00:00
|
|
|
Nothing special is needed to handle English.")
|
1997-05-12 07:00:08 +00:00
|
|
|
))
|
1997-04-05 02:44:02 +00:00
|
|
|
|
1997-09-19 17:36:36 +00:00
|
|
|
;; Make "ASCII" an alias of "English" language environment.
|
|
|
|
(set-language-info-alist
|
|
|
|
"ASCII" (cdr (assoc "English" language-info-alist)))
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
;;; arch-tag: e440bdb0-91b0-4fb4-ae38-425780f8f745
|
1997-04-05 02:44:02 +00:00
|
|
|
;;; english.el ends here
|