From 2a4b921193df1594ab2ba05080d779e78abf6bd8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 23 Apr 2005 16:46:01 +0000 Subject: [PATCH] (follow-end-of-buffer): Use with-no-warnings. --- lisp/follow.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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." (t (select-window (car (reverse followers))))) (goto-char pos) - (end-of-buffer arg))) + (with-no-warnings + (end-of-buffer arg)))) ;;}}} -- 2.39.2