summaryrefslogtreecommitdiff
path: root/lisp/textmodes/ispell.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-16 19:00:18 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-16 19:00:18 +0000
commit639b83ca700cbc4b743ff3f16973d11f3eb2a038 (patch)
tree969a4bd73d3db5462b710110021461e11d34615a /lisp/textmodes/ispell.el
parent96111013f1e5f17fe681e62be3b69ac9e84ae04c (diff)
downloademacs-639b83ca700cbc4b743ff3f16973d11f3eb2a038.tar.gz
(ispell-dictionary-alist-1): Add `american' to list.
Diffstat (limited to 'lisp/textmodes/ispell.el')
-rw-r--r--lisp/textmodes/ispell.el8
1 files changed, 5 insertions, 3 deletions
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: