comparison src/cmds.c @ 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 82ebdf9967da
children 5c3e047bbf23
comparison
equal deleted inserted replaced
26389:e2acf63b5403 26390:5aa0cfc19c76
152 152
153 DEFUN ("beginning-of-line", Fbeginning_of_line, Sbeginning_of_line, 153 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\
156 With argument N not nil or 1, move forward N - 1 lines first.\n\ 156 With argument N not nil or 1, move forward N - 1 lines first.\n\
157 If scan reaches end of buffer, stop there without error.") 157 If point reaches the beginning or end of buffer, it stops there.\n\
158 This command does not move point across a field boundary\n\
159 unless it would move beyond there to a different line.\n\
160 If 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 {
161 if (NILP (n)) 164 if (NILP (n))
162 XSETFASTINT (n, 1); 165 XSETFASTINT (n, 1);
170 173
171 DEFUN ("end-of-line", Fend_of_line, Send_of_line, 174 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\
174 With argument N not nil or 1, move forward N - 1 lines first.\n\ 177 With argument N not nil or 1, move forward N - 1 lines first.\n\
175 If scan reaches end of buffer, stop there without error.") 178 If point reaches the beginning or end of buffer, it stops there.\n\
179 This command does not move point across a field boundary\n\
180 unless it would move beyond there to a different line.\n\
181 If 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 {
179 if (NILP (n)) 185 if (NILP (n))
180 XSETFASTINT (n, 1); 186 XSETFASTINT (n, 1);