]> git.eshelyaron.com Git - emacs.git/commitdiff
* ispell.el (check-ispell-version): suggest to try ispell4.el if
authorFrancesco Potortì <pot@gnu.org>
Thu, 22 Sep 1994 11:41:17 +0000 (11:41 +0000)
committerFrancesco Potortì <pot@gnu.org>
Thu, 22 Sep 1994 11:41:17 +0000 (11:41 +0000)
version does not match.

lisp/textmodes/ispell.el

index c1bf5e52709ca8397b0b90a5cac2bf228a2a003f..6955d98968c137d21e135a1aee2d18654e1fb858 100644 (file)
@@ -1399,13 +1399,14 @@ scrolling the current window.  Leave the new window selected."
                                      "\\|")
                           "\\)\\b")
                   nil t))
-            (error "version mismatch: ispell.el is for %s, %s is %s"
-                   (car ispell-required-versions)
+            (error "%s version %s is required: try renaming ispell4.el to ispell.el"
                    ispell-program-name
-                   (if (re-search-forward "version \\([0-9][0-9.]+\\)\\b"
-                                          nil t)
-                       (buffer-substring (match-beginning 1) (match-end 1))
-                     "an unknown version"))))
+                   (car ispell-required-versions)
+                   ;(if (re-search-forward "version \\([0-9][0-9.]+\\)\\b"
+                   ;                      nil t)
+                   ;   (buffer-substring (match-beginning 1) (match-end 1))
+                   ; "an unknown version")
+                   )))
       (kill-buffer (current-buffer)))))