From: Richard M. Stallman Date: Sat, 23 Apr 2005 16:46:01 +0000 (+0000) Subject: (follow-end-of-buffer): Use with-no-warnings. X-Git-Tag: ttn-vms-21-2-B4~798 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a4b921193df1594ab2ba05080d779e78abf6bd8;p=emacs.git (follow-end-of-buffer): Use with-no-warnings. --- 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)))) ;;}}}