changeset 59940:60ab67d8cf3a

(buffer-end): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sun, 06 Feb 2005 10:40:20 +0000
parents b9511a236e82
children 654691f40a53
files lisp/emacs-lisp/lisp.el
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
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)