checkers/spell: fix default ispell dict

Changes the default ispell dictionary from "en" to "english" since the
former isn't actually a default dictionary name listed in ispell. See
9f30a6b1a4/lisp/textmodes/ispell.el (L471)

Otherwise, enabling checkers/spell doesn't do anything even if aspell and the
aspell-en dictionary are installed according to the module README file.
This commit is contained in:
Akira Baruah 2020-09-29 01:13:04 -07:00
parent 1456108d5b
commit 289369f191

View file

@ -32,7 +32,7 @@
"--dont-tex-check-comments"))
(unless ispell-dictionary
(setq ispell-dictionary "en"))
(setq ispell-dictionary "english"))
(unless ispell-aspell-dict-dir
(setq ispell-aspell-dict-dir
(ispell-get-aspell-config-value "dict-dir")))