# HG changeset patch # User Francesco Potort # Date 780234077 0 # Node ID 6792b6d7e6c0e63ba926d1a53cb9b70650bf0521 # Parent 69f0ae06bcdf38598b8d03f108d9868a3f07beee * ispell.el (check-ispell-version): suggest to try ispell4.el if version does not match. diff -r 69f0ae06bcdf -r 6792b6d7e6c0 lisp/textmodes/ispell.el --- a/lisp/textmodes/ispell.el Thu Sep 22 07:41:35 1994 +0000 +++ b/lisp/textmodes/ispell.el Thu Sep 22 11:41:17 1994 +0000 @@ -1399,13 +1399,14 @@ "\\|") "\\)\\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)))))