emacs-spellchecker.patch 535 B

12345678910111213141516
  1. diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
  2. index 1d28de7..1daec44 100644
  3. --- a/lisp/textmodes/ispell.el
  4. +++ b/lisp/textmodes/ispell.el
  5. @@ -351,9 +351,9 @@ Must be greater than 1."
  6. :group 'ispell)
  7. (defcustom ispell-program-name
  8. - (or (executable-find "aspell")
  9. + (or (executable-find "hunspell")
  10. + (executable-find "aspell")
  11. (executable-find "ispell")
  12. - (executable-find "hunspell")
  13. "ispell")
  14. "Program invoked by \\[ispell-word] and \\[ispell-region] commands."
  15. :type 'string