mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-23 22:20:24 -08:00
(buffer-end): Doc fix.
This commit is contained in:
parent
7483daa148
commit
03deb635e5
1 changed files with 3 additions and 0 deletions
|
|
@ -233,6 +233,9 @@ recipe (see `end-of-defun'). Major modes can define this if the
|
||||||
normal method is not appropriate.")
|
normal method is not appropriate.")
|
||||||
|
|
||||||
(defun buffer-end (arg)
|
(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)))
|
(if (> arg 0) (point-max) (point-min)))
|
||||||
|
|
||||||
(defun end-of-defun (&optional arg)
|
(defun end-of-defun (&optional arg)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue