Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
130f43af
Commit
130f43af
authored
Sep 22, 1994
by
Francesco Potortì
Browse files
* ispell.el (check-ispell-version): suggest to try ispell4.el if
version does not match.
parent
6b3faad8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
lisp/textmodes/ispell.el
lisp/textmodes/ispell.el
+7
-6
No files found.
lisp/textmodes/ispell.el
View file @
130f43af
...
...
@@ -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
)))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment