Mercurial > emacs
diff lisp/emacs-lisp/lisp.el @ 59940:60ab67d8cf3a
(buffer-end): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 06 Feb 2005 10:40:20 +0000 |
parents | 99bf07f49031 |
children | 99b039f2f040 3ebd9bdb4fe5 |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp.el Sun Feb 06 10:38:49 2005 +0000 +++ b/lisp/emacs-lisp/lisp.el Sun Feb 06 10:40:20 2005 +0000 @@ -233,6 +233,9 @@ normal method is not appropriate.") (defun buffer-end (arg) + "Return the \"far end\" position of the buffer, moving in direction ARG. +If ARG is positive, that's the end of the buffer. +Otherwise, that's the beginning of the buffer." (if (> arg 0) (point-max) (point-min))) (defun end-of-defun (&optional arg)