43d9df
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
43d9df
index 1d28de7..1daec44 100644
43d9df
--- a/lisp/textmodes/ispell.el
43d9df
+++ b/lisp/textmodes/ispell.el
43d9df
@@ -200,9 +200,9 @@
43d9df
 ;; cause an error; and one of the other spelling engines below is
43d9df
 ;; almost certainly installed in any case, for enchant to use.
43d9df
 (defcustom ispell-program-name
43d9df
-  (or (executable-find "aspell")
43d9df
+  (or (executable-find "hunspell")
43d9df
+      (executable-find "aspell")
43d9df
       (executable-find "ispell")
43d9df
-      (executable-find "hunspell")
43d9df
       "ispell")
43d9df
   "Program invoked by \\[ispell-word] and \\[ispell-region] commands."
43d9df
   :type 'string