diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-04-23 16:46:01 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-04-23 16:46:01 +0000 |
commit | 2a4b921193df1594ab2ba05080d779e78abf6bd8 (patch) | |
tree | f9e08c3e49d1a8459ba1c5c065ae401d507fe894 /lisp/follow.el | |
parent | 9177dd93a4370ddeaae127fa8e3a535a07e9588f (diff) | |
download | emacs-2a4b921193df1594ab2ba05080d779e78abf6bd8.tar.gz |
(follow-end-of-buffer): Use with-no-warnings.
Diffstat (limited to 'lisp/follow.el')
-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." (t (select-window (car (reverse followers))))) (goto-char pos) - (end-of-buffer arg))) + (with-no-warnings + (end-of-buffer arg)))) ;;}}} |