From: Richard M. Stallman Date: Mon, 16 Sep 1996 19:00:18 +0000 (+0000) Subject: (ispell-dictionary-alist-1): Add `american' to list. X-Git-Tag: emacs-20.1~3727 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7c5a1541f34c8eec8f5e1e7db66819cb6a23496a;p=emacs.git (ispell-dictionary-alist-1): Add `american' to list. --- diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 69190348a60..9a29c1c95ed 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -448,10 +448,12 @@ for language-specific arguments.") (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 @@ Both should not be used to define a buffer-local dictionary." ;;; Local Variables: ;;; mode: emacs-lisp ;;; comment-column: 40 -;;; ispell-local-dictionary: "english" +;;; ispell-local-dictionary: "american" ;;; End: