]> git.eshelyaron.com Git - emacs.git/commitdiff
(flyspell-check-word-p):
authorRichard M. Stallman <rms@gnu.org>
Mon, 10 Oct 2005 04:03:09 +0000 (04:03 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 10 Oct 2005 04:03:09 +0000 (04:03 +0000)
If unread-command-events is non-empty, don't call sit-for.

lisp/ChangeLog
lisp/textmodes/flyspell.el

index 5ae269835f98d7c901cacc63282a72bba20be64c..d2aada89bb103ebc9f2082a3316b873e92fcd435 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-10  Kenichi Handa  <handa@m17n.org>
+
+       * textmodes/flyspell.el (flyspell-check-word-p):
+       If unread-command-events is non-empty, don't call sit-for.
+
 2005-10-09  Richard M. Stallman  <rms@gnu.org>
 
        * font-lock.el (font-lock-syntactic-keywords)
index 10d61e0852a11c15fbefc80d92ba7943f88581ea..74c7cbc57624ed32d86145e210a98bbc0489e17d 100644 (file)
@@ -772,7 +772,8 @@ Mostly we check word delimiters."
      ((get this-command 'flyspell-delayed)
       ;; the current command is not delayed, that
       ;; is that we must check the word now
-      (sit-for flyspell-delay))
+      (and (not unread-command-events)
+          (sit-for flyspell-delay)))
      (t t)))
    (t t)))