diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-09-13 08:00:57 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-09-13 08:00:57 +0000 |
commit | 4b4d84b4b4682f50237b643a69602f971884874f (patch) | |
tree | a63ea5594b5c70946edb5ba140f59b7b0e487b3d /lisp/follow.el | |
parent | 53d1f30dca7882b69e5793d528a8a41e27e3b770 (diff) | |
download | emacs-4b4d84b4b4682f50237b643a69602f971884874f.tar.gz |
(follow-generic-filter): Fix a typo in a comment.
Diffstat (limited to 'lisp/follow.el')
-rw-r--r-- | lisp/follow.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/follow.el b/lisp/follow.el index 598db2eabea..b2b8a76419d 100644 --- a/lisp/follow.el +++ b/lisp/follow.el @@ -2048,13 +2048,13 @@ report this using the `report-emacs-bug' function." (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))) |