Petr Hracek a8163b
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
Peter Oliver 14924f
index 65f61644b6..254c3e6a82 100644
Petr Hracek a8163b
--- a/lisp/textmodes/ispell.el
Petr Hracek a8163b
+++ b/lisp/textmodes/ispell.el
Peter Oliver 14924f
@@ -197,14 +197,11 @@ ispell-choices-win-default-height
Peter Oliver 14924f
   :type 'integer
Peter Oliver 14924f
   :group 'ispell)
Peter Oliver 14924f
 
Peter Oliver 14924f
-;; XXX Add enchant to this list once enchant >= 2.1.0 is widespread.
Peter Oliver 14924f
-;; Before that, adding it is useless, as if it is found, it will just
Peter Oliver 14924f
-;; cause an error; and one of the other spelling engines below is
Peter Oliver 14924f
-;; almost certainly installed in any case, for enchant to use.
Karel Klic 24eae4
 (defcustom ispell-program-name
Petr Hracek a8163b
-  (or (executable-find "aspell")
Peter Oliver 14924f
-      (executable-find "ispell")
Peter Oliver 14924f
+  (or (executable-find "enchant-2")
Peter Oliver 14924f
       (executable-find "hunspell")
Petr Hracek a8163b
+      (executable-find "aspell")
Peter Oliver 14924f
+      (executable-find "ispell")
Karel Klic 24eae4
       "ispell")
Karel Klic 24eae4
   "Program invoked by \\[ispell-word] and \\[ispell-region] commands."
Karel Klic 24eae4
   :type 'string