diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-11-09 18:46:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-11-09 18:46:09 +0000 |
commit | bb2910dccf4fad38853583003c6241d45bdfa50a (patch) | |
tree | c29a47ed5c396d140ec4e6fff2aa65d37863df3d /src | |
parent | 2cbddc344d7667ae8226f8c4db098c538145a7f3 (diff) | |
download | emacs-bb2910dccf4fad38853583003c6241d45bdfa50a.tar.gz |
(Fbeginning_of_line): Doc fix.
(Fend_of_line): Doc fix.
Diffstat (limited to 'src')
-rw-r--r-- | src/cmds.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/cmds.c b/src/cmds.c index 3e688afa995..721575709ce 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -154,7 +154,10 @@ DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 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 @@ DEFUN ("end-of-line", Fend_of_line, Send_of_line, 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; { |