aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-11-09 18:46:09 +0000
committerRichard M. Stallman1999-11-09 18:46:09 +0000
commitc252ce765356c8aed23effba20e05caff8ebf215 (patch)
treea7ce70ad0b200141749370447e34fd5cbf1378fd
parenta3caef99aeab0951b80cfee91b4687a44d9bc24d (diff)
downloademacs-c252ce765356c8aed23effba20e05caff8ebf215.tar.gz
emacs-c252ce765356c8aed23effba20e05caff8ebf215.zip
(Fbeginning_of_line): Doc fix.
(Fend_of_line): Doc fix.
-rw-r--r--src/cmds.c10
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,
154 0, 1, "p", 154 0, 1, "p",
155 "Move point to beginning of current line.\n\ 155 "Move point to beginning of current line.\n\
156With argument N not nil or 1, move forward N - 1 lines first.\n\ 156With argument N not nil or 1, move forward N - 1 lines first.\n\
157If scan reaches end of buffer, stop there without error.") 157If point reaches the beginning or end of buffer, it stops there.\n\
158This command does not move point across a field boundary\n\
159unless it would move beyond there to a different line.\n\
160If N is nil or 1, and point starts at a field boundary, point does not move.")
158 (n) 161 (n)
159 Lisp_Object n; 162 Lisp_Object n;
160{ 163{
@@ -172,7 +175,10 @@ DEFUN ("end-of-line", Fend_of_line, Send_of_line,
172 0, 1, "p", 175 0, 1, "p",
173 "Move point to end of current line.\n\ 176 "Move point to end of current line.\n\
174With argument N not nil or 1, move forward N - 1 lines first.\n\ 177With argument N not nil or 1, move forward N - 1 lines first.\n\
175If scan reaches end of buffer, stop there without error.") 178If point reaches the beginning or end of buffer, it stops there.\n\
179This command does not move point across a field boundary\n\
180unless it would move beyond there to a different line.\n\
181If N is nil or 1, and point starts at a field boundary, point does not move.")
176 (n) 182 (n)
177 Lisp_Object n; 183 Lisp_Object n;
178{ 184{