Mercurial > emacs
changeset 26390:5aa0cfc19c76
(Fbeginning_of_line): Doc fix.
(Fend_of_line): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 09 Nov 1999 18:46:09 +0000 |
parents | e2acf63b5403 |
children | 216416ad34fe |
files | src/cmds.c |
diffstat | 1 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/cmds.c Tue Nov 09 18:42:28 1999 +0000 +++ b/src/cmds.c Tue Nov 09 18:46:09 1999 +0000 @@ -154,7 +154,10 @@ 0, 1, "p", "Move point to beginning of current line.\n\ With argument N not nil or 1, move forward N - 1 lines first.\n\ -If scan reaches end of buffer, stop there without error.") +If point reaches the beginning or end of buffer, it stops there.\n\ +This command does not move point across a field boundary\n\ +unless it would move beyond there to a different line.\n\ +If N is nil or 1, and point starts at a field boundary, point does not move.") (n) Lisp_Object n; { @@ -172,7 +175,10 @@ 0, 1, "p", "Move point to end of current line.\n\ With argument N not nil or 1, move forward N - 1 lines first.\n\ -If scan reaches end of buffer, stop there without error.") +If point reaches the beginning or end of buffer, it stops there.\n\ +This command does not move point across a field boundary\n\ +unless it would move beyond there to a different line.\n\ +If N is nil or 1, and point starts at a field boundary, point does not move.") (n) Lisp_Object n; {