# HG changeset patch # User Eli Zaretskii # Date 1189670457 0 # Node ID 578320c8f7ecbf90c7cb828c1c9c9f071a24324f # Parent 28d0c39b6c3ba46cf4b8b6a61144bd99b0092cfd (follow-generic-filter): Fix a typo in a comment. diff -r 28d0c39b6c3b -r 578320c8f7ec lisp/follow.el --- a/lisp/follow.el Thu Sep 13 08:00:47 2007 +0000 +++ b/lisp/follow.el Thu Sep 13 08:00:57 2007 +0000 @@ -2048,13 +2048,13 @@ (follow-invalidate-cache) ;; Normally, if the display has been changed, it is redrawn. All - ;; windows showing only the end of a buffer is unconditionally - ;; recentered, we can't prevent it by calling + ;; windows showing only the end of a buffer are unconditionally + ;; recentered; we can't prevent that by calling ;; `follow-avoid-tail-recenter'. ;; - ;; By performing a redisplay on our own, Emacs need not perform - ;; the above described redisplay. (However, bu performing it when - ;; there are input available just seems to make things worse.) + ;; We force a redisplay here on our own, so Emacs does need to. + ;; (However, redisplaying when there's input available just seems + ;; to make things worse, so we exclude that case.) (if (and follow-avoid-tail-recenter-p (not (input-pending-p))) (sit-for 0)))