changeset 61772:bd5a90076cd2

(follow-end-of-buffer): Use with-no-warnings.
author Richard M. Stallman <rms@gnu.org>
date Sat, 23 Apr 2005 16:46:01 +0000
parents 024d90514771
children 923d3b20f747
files lisp/follow.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/follow.el	Sat Apr 23 16:45:21 2005 +0000
+++ b/lisp/follow.el	Sat Apr 23 16:46:01 2005 +0000
@@ -980,7 +980,8 @@
 	  (t
 	   (select-window (car (reverse followers)))))
     (goto-char pos)
-    (end-of-buffer arg)))
+    (with-no-warnings
+      (end-of-buffer arg))))
 
 ;;}}}