]> git.eshelyaron.com Git - emacs.git/commitdiff
(follow-end-of-buffer): Use with-no-warnings.
authorRichard M. Stallman <rms@gnu.org>
Sat, 23 Apr 2005 16:46:01 +0000 (16:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 23 Apr 2005 16:46:01 +0000 (16:46 +0000)
lisp/follow.el

index a01b0e77eb2d723303e916c4f11f303a6b032809..61517a68ff18e58c47fbc22844416195d07ed18f 100644 (file)
@@ -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))))
 
 ;;}}}