From f30fe18bf9f2ca5ecd250cab41a6711e8e74cede Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Sat, 12 Jan 2002 21:40:32 +0000 Subject: [PATCH] (flyspell-check-pre-word-p): Prevent delaying when executing keyboard macros. --- lisp/ChangeLog | 9 +++++++-- lisp/textmodes/flyspell.el | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1840cdd623d..83ef065922a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2002-01-12 Pavel Jan,Bm(Bk + + * textmodes/flyspell.el (flyspell-check-pre-word-p): Prevent + delaying when executing keyboard macros. + 2002-01-12 Richard M. Stallman * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer @@ -7608,7 +7613,7 @@ 2001-04-11 Colin Walters * eshell/em-hist.el (eshell-previous-matching-input): - Don't display "History item" if the the minibuffer is active. + Don't display "History item" if the minibuffer is active. 2001-04-11 Gerd Moellmann @@ -11799,7 +11804,7 @@ functions. Add some IN-FILTER and OUT-FILTER functions in the few cases they're needed. - * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so + * wid-edit.el (checkbox): Add a small `X' to the :on-glyph, so that it's distinguishable from the :off-glyph on dark-background displays. Set its background color too. diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index eaebab0592b..6cd884474f0 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -656,6 +656,7 @@ before the current command." (= flyspell-pre-point (+ (point) 1))) nil) ((and (symbolp this-command) + (not executing-kbd-macro) (or (get this-command 'flyspell-delayed) (and (get this-command 'flyspell-deplacement) (eq flyspell-previous-command this-command))) -- 2.39.5