]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fbeginning_of_line): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Nov 1999 18:46:09 +0000 (18:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Nov 1999 18:46:09 +0000 (18:46 +0000)
(Fend_of_line): Doc fix.

src/cmds.c

index 3e688afa995501481a874fe484524933ecbc691f..721575709ceb8b93ed2c9aa3a91bf3f469b4a48f 100644 (file)
@@ -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;
 {