emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104858: Replace runtime CL function,


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104858: Replace runtime CL function, as flagged by the compiler.
Date: Fri, 01 Jul 2011 14:13:17 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104858
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2011-07-01 14:13:17 -0400
message:
  Replace runtime CL function, as flagged by the compiler.
  
  * lisp/textmodes/flyspell.el (flyspell-word-search-backward):
  Replace CL function.
modified:
  lisp/ChangeLog
  lisp/textmodes/flyspell.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-07-01 17:58:14 +0000
+++ b/lisp/ChangeLog    2011-07-01 18:13:17 +0000
@@ -1,3 +1,8 @@
+2011-07-01  Glenn Morris  <address@hidden>
+
+       * textmodes/flyspell.el (flyspell-word-search-backward):
+       Replace CL function.
+
 2011-07-01  Stefan Monnier  <address@hidden>
 
        * mouse.el (mouse--strip-first-event): New function.

=== modified file 'lisp/textmodes/flyspell.el'
--- a/lisp/textmodes/flyspell.el        2011-06-30 23:19:45 +0000
+++ b/lisp/textmodes/flyspell.el        2011-07-01 18:13:17 +0000
@@ -1002,7 +1002,7 @@
        (let ((lw (flyspell-get-word)))
          (if (and (consp lw)
                   (if ignore-case
-                      (equalp (car lw) word)
+                      (string-equal (downcase (car lw)) (downcase word))
                     (string-equal (car lw) word)))
              (setq r p)
            (goto-char p))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]