(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / language / english.el
blob1c53661224482b4b91aaca498f6c5312e16d10ee
1 ;;; english.el --- support for English -*- no-byte-compile: t -*-
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
8 ;; Keywords: multibyte character, character set, syntax, category
10 ;; This file is part of GNU Emacs.
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.
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.
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.
27 ;;; Commentary:
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.
33 ;;; Code:
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.")
43 ;; Make "ASCII" an alias of "English" language environment.
44 (set-language-info-alist
45 "ASCII" (cdr (assoc "English" language-info-alist)))
47 ;;; arch-tag: e440bdb0-91b0-4fb4-ae38-425780f8f745
48 ;;; english.el ends here