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
27ce741e
Commit
27ce741e
authored
Dec 02, 2000
by
Stefan Monnier
Browse files
(check-ispell-version): Don't use match-beginning
to check if the match succeeded.
parent
285991dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/textmodes/ispell.el
lisp/textmodes/ispell.el
+1
-2
No files found.
lisp/ChangeLog
View file @
27ce741e
2000-12-02 Stefan Monnier <monnier@cs.yale.edu>
* textmodes/ispell.el (check-ispell-version): Don't use match-beginning
to check if the match succeeded.
2000-12-02 Gerd Moellmann <gerd@gnu.org>
* startup.el (use-fancy-splash-screens-p): New function.
...
...
lisp/textmodes/ispell.el
View file @
27ce741e
...
...
@@ -747,8 +747,7 @@ Otherwise returns the library path if defined."
ispell-version
))
(
message
result
))
;; return library path.
(
re-search-forward
"LIBDIR = \\\"\\([^ \t\n]*\\)\\\""
nil
t
)
(
if
(
match-beginning
0
)
(
if
(
re-search-forward
"LIBDIR = \\\"\\([^ \t\n]*\\)\\\""
nil
t
)
(
setq
result
(
buffer-substring
(
match-beginning
1
)
(
match-end
1
)))))
(
goto-char
(
point-min
))
(
if
(
not
(
memq
status
'
(
0
nil
)))
...
...
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