diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/flyspell.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ae269835f9..d2aada89bb1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-10-10 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * textmodes/flyspell.el (flyspell-check-word-p): | ||
| 4 | If unread-command-events is non-empty, don't call sit-for. | ||
| 5 | |||
| 1 | 2005-10-09 Richard M. Stallman <rms@gnu.org> | 6 | 2005-10-09 Richard M. Stallman <rms@gnu.org> |
| 2 | 7 | ||
| 3 | * font-lock.el (font-lock-syntactic-keywords) | 8 | * font-lock.el (font-lock-syntactic-keywords) |
diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 10d61e0852a..74c7cbc5762 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el | |||
| @@ -772,7 +772,8 @@ Mostly we check word delimiters." | |||
| 772 | ((get this-command 'flyspell-delayed) | 772 | ((get this-command 'flyspell-delayed) |
| 773 | ;; the current command is not delayed, that | 773 | ;; the current command is not delayed, that |
| 774 | ;; is that we must check the word now | 774 | ;; is that we must check the word now |
| 775 | (sit-for flyspell-delay)) | 775 | (and (not unread-command-events) |
| 776 | (sit-for flyspell-delay))) | ||
| 776 | (t t))) | 777 | (t t))) |
| 777 | (t t))) | 778 | (t t))) |
| 778 | 779 | ||