aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorPavel Janík2002-01-12 21:40:32 +0000
committerPavel Janík2002-01-12 21:40:32 +0000
commitf30fe18bf9f2ca5ecd250cab41a6711e8e74cede (patch)
treef671c84b2c79d56edbb2dbbf7d42a1ed12453740 /lisp/textmodes
parent9f696a0053309aa48f5cae63beb8d05e030cbf49 (diff)
downloademacs-f30fe18bf9f2ca5ecd250cab41a6711e8e74cede.tar.gz
emacs-f30fe18bf9f2ca5ecd250cab41a6711e8e74cede.zip
(flyspell-check-pre-word-p): Prevent delaying when executing keyboard
macros.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/flyspell.el1
1 files changed, 1 insertions, 0 deletions
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."
656 (= flyspell-pre-point (+ (point) 1))) 656 (= flyspell-pre-point (+ (point) 1)))
657 nil) 657 nil)
658 ((and (symbolp this-command) 658 ((and (symbolp this-command)
659 (not executing-kbd-macro)
659 (or (get this-command 'flyspell-delayed) 660 (or (get this-command 'flyspell-delayed)
660 (and (get this-command 'flyspell-deplacement) 661 (and (get this-command 'flyspell-deplacement)
661 (eq flyspell-previous-command this-command))) 662 (eq flyspell-previous-command this-command)))