# HG changeset patch # User Richard M. Stallman # Date 912473445 0 # Node ID 764497f1c6a01c4858f76278a79cccf09232d740 # Parent 2bb8777a3ba761f40a219e17c1581523f2d40822 (flyspell-check-word-p): Don't delay inside a kbd macro. diff -r 2bb8777a3ba7 -r 764497f1c6a0 lisp/textmodes/flyspell.el --- a/lisp/textmodes/flyspell.el Mon Nov 30 23:55:42 1998 +0000 +++ b/lisp/textmodes/flyspell.el Tue Dec 01 00:50:45 1998 +0000 @@ -322,7 +322,7 @@ (put 'ispell-filter-continue 'permanent-local t) (put 'ispell-process-directory 'permanent-local t) (put 'ispell-parser 'permanent-local t))) - ;; We put the `flyspel-delayed' property on some commands. + ;; We put the `flyspell-delayed' property on some commands. (flyspell-delay-commands) ;; we bound flyspell action to post-command hook (make-local-hook 'post-command-hook) @@ -466,6 +466,9 @@ ((not (integerp flyspell-delay)) ;; yes because the user had set up a no-delay configuration. t) + (executing-kbd-macro + ;; Don't delay inside a keyboard macro. + t) (t (if (fboundp 'about-xemacs) (sit-for flyspell-delay nil)