# HG changeset patch # User Richard M. Stallman # Date 1107686420 0 # Node ID 60ab67d8cf3a24d69226bc4b01d741168e701097 # Parent b9511a236e821fe7bb365984a13935980c2a02be (buffer-end): Doc fix. diff -r b9511a236e82 -r 60ab67d8cf3a lisp/emacs-lisp/lisp.el --- 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)