changeset 16217:bf9ff58e9518

(ispell-dictionary-alist-1): Add `american' to list.
author Richard M. Stallman <rms@gnu.org>
date Mon, 16 Sep 1996 19:00:18 +0000
parents 3c6aaa4f236a
children 32f82ca8b41f
files lisp/textmodes/ispell.el
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/ispell.el	Mon Sep 16 14:44:22 1996 +0000
+++ b/lisp/textmodes/ispell.el	Mon Sep 16 19:00:18 1996 +0000
@@ -448,10 +448,12 @@
 (defvar ispell-dictionary-alist-1	; sk  9-Aug-1991 18:28
   '((nil				; default (english.aff)
      "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil)
-    ("english"				; make english explicitly selectable
+    ("english"				; make English explicitly selectable
      "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil)
-    ("british"				; british version
+    ("british"				; British version
      "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "british") nil)
+    ("american"				; American version
+     "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "american") nil)
     ("deutsch"				; deutsch.aff
      "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex")
     ("deutsch8"
@@ -2389,7 +2391,7 @@
 ;;; Local Variables:
 ;;; mode: emacs-lisp
 ;;; comment-column: 40
-;;; ispell-local-dictionary: "english"
+;;; ispell-local-dictionary: "american"
 ;;; End: