diff options
| -rw-r--r-- | lisp/follow.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/follow.el b/lisp/follow.el index a01b0e77eb2..61517a68ff1 100644 --- a/lisp/follow.el +++ b/lisp/follow.el | |||
| @@ -980,7 +980,8 @@ of the way from the true end." | |||
| 980 | (t | 980 | (t |
| 981 | (select-window (car (reverse followers))))) | 981 | (select-window (car (reverse followers))))) |
| 982 | (goto-char pos) | 982 | (goto-char pos) |
| 983 | (end-of-buffer arg))) | 983 | (with-no-warnings |
| 984 | (end-of-buffer arg)))) | ||
| 984 | 985 | ||
| 985 | ;;}}} | 986 | ;;}}} |
| 986 | 987 | ||