aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-07-01 14:13:17 -0400
committerGlenn Morris2011-07-01 14:13:17 -0400
commitd224ac8375ca4fc8402fccf72a3666a9777be197 (patch)
tree9872e4369a2de0daf77cd8c06742da4c54cca9a9
parent978ff6c51c376f83988f5bf0cb451912501d2529 (diff)
downloademacs-d224ac8375ca4fc8402fccf72a3666a9777be197.tar.gz
emacs-d224ac8375ca4fc8402fccf72a3666a9777be197.zip
Replace runtime CL function, as flagged by the compiler.
* lisp/textmodes/flyspell.el (flyspell-word-search-backward): Replace CL function.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/flyspell.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 066f56a653b..69d6c888271 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-07-01 Glenn Morris <rgm@gnu.org>
2
3 * textmodes/flyspell.el (flyspell-word-search-backward):
4 Replace CL function.
5
12011-07-01 Stefan Monnier <monnier@iro.umontreal.ca> 62011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * mouse.el (mouse--strip-first-event): New function. 8 * mouse.el (mouse--strip-first-event): New function.
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el
index 7bb3323eb17..e6837d0abde 100644
--- a/lisp/textmodes/flyspell.el
+++ b/lisp/textmodes/flyspell.el
@@ -1002,7 +1002,7 @@ Mostly we check word delimiters."
1002 (let ((lw (flyspell-get-word))) 1002 (let ((lw (flyspell-get-word)))
1003 (if (and (consp lw) 1003 (if (and (consp lw)
1004 (if ignore-case 1004 (if ignore-case
1005 (equalp (car lw) word) 1005 (string-equal (downcase (car lw)) (downcase word))
1006 (string-equal (car lw) word))) 1006 (string-equal (car lw) word)))
1007 (setq r p) 1007 (setq r p)
1008 (goto-char p)))) 1008 (goto-char p))))