aboutsummaryrefslogtreecommitdiffstats
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
parent9f696a0053309aa48f5cae63beb8d05e030cbf49 (diff)
downloademacs-f30fe18bf9f2ca5ecd250cab41a6711e8e74cede.tar.gz
emacs-f30fe18bf9f2ca5ecd250cab41a6711e8e74cede.zip
(flyspell-check-pre-word-p): Prevent delaying when executing keyboard
macros.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/textmodes/flyspell.el1
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 @@
12002-01-12 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * textmodes/flyspell.el (flyspell-check-pre-word-p): Prevent
4 delaying when executing keyboard macros.
5
12002-01-12 Richard M. Stallman <rms@gnu.org> 62002-01-12 Richard M. Stallman <rms@gnu.org>
2 7
3 * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer 8 * help-mode.el (help-xref-go-back): Restore POSITION in proper buffer
@@ -7608,7 +7613,7 @@
76082001-04-11 Colin Walters <walters@cis.ohio-state.edu> 76132001-04-11 Colin Walters <walters@cis.ohio-state.edu>
7609 7614
7610 * eshell/em-hist.el (eshell-previous-matching-input): 7615 * eshell/em-hist.el (eshell-previous-matching-input):
7611 Don't display "History item" if the the minibuffer is active. 7616 Don't display "History item" if the minibuffer is active.
7612 7617
76132001-04-11 Gerd Moellmann <gerd@gnu.org> 76182001-04-11 Gerd Moellmann <gerd@gnu.org>
7614 7619
@@ -11799,7 +11804,7 @@
11799 functions. Add some IN-FILTER and OUT-FILTER functions in the few 11804 functions. Add some IN-FILTER and OUT-FILTER functions in the few
11800 cases they're needed. 11805 cases they're needed.
11801 11806
11802 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so 11807 * wid-edit.el (checkbox): Add a small `X' to the :on-glyph, so
11803 that it's distinguishable from the :off-glyph on dark-background 11808 that it's distinguishable from the :off-glyph on dark-background
11804 displays. Set its background color too. 11809 displays. Set its background color too.
11805 11810
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)))