comparison lispref/positions.texi @ 40066:df172f62a587

Minor cleanup.
author Richard M. Stallman <rms@gnu.org>
date Fri, 19 Oct 2001 19:09:32 +0000
parents 51d732cff5a4
children bfdd0deae843
comparison
equal deleted inserted replaced
40065:7592758da8f4 40066:df172f62a587
325 @deffn Command beginning-of-line &optional count 325 @deffn Command beginning-of-line &optional count
326 This function moves point to the beginning of the current line. With an 326 This function moves point to the beginning of the current line. With an
327 argument @var{count} not @code{nil} or 1, it moves forward 327 argument @var{count} not @code{nil} or 1, it moves forward
328 @var{count}@minus{}1 lines and then to the beginning of the line. 328 @var{count}@minus{}1 lines and then to the beginning of the line.
329 329
330 This command does not move point across a field boundary 330 This function does not move point across a field boundary
331 (@pxref{Fields}) unless doing so would move beyond there to a 331 (@pxref{Fields}) unless doing so would move beyond there to a
332 different line; if @var{count} is @code{nil} or 1, and point starts at 332 different line; therefore, if @var{count} is @code{nil} or 1, and
333 a field boundary, point does not move. To ignore field boundaries, 333 point starts at a field boundary, point does not move. To ignore
334 either bind @code{inhibit-field-text-motion} to @code{t}, or use the 334 field boundaries, either bind @code{inhibit-field-text-motion} to
335 @code{forward-line} function instead. For instance, 335 @code{t}, or use the @code{forward-line} function instead. For
336 @code{(forward-line 0)} does the same thing as 336 instance, @code{(forward-line 0)} does the same thing as
337 @code{(beginning-of-line)}, except that it ignores field boundaries. 337 @code{(beginning-of-line)}, except that it ignores field boundaries.
338 338
339 If this function reaches the end of the buffer (or of the accessible 339 If this function reaches the end of the buffer (or of the accessible
340 portion, if narrowing is in effect), it positions point there. No error 340 portion, if narrowing is in effect), it positions point there. No error
341 is signaled. 341 is signaled.
350 @deffn Command end-of-line &optional count 350 @deffn Command end-of-line &optional count
351 This function moves point to the end of the current line. With an 351 This function moves point to the end of the current line. With an
352 argument @var{count} not @code{nil} or 1, it moves forward 352 argument @var{count} not @code{nil} or 1, it moves forward
353 @var{count}@minus{}1 lines and then to the end of the line. 353 @var{count}@minus{}1 lines and then to the end of the line.
354 354
355 This command does not move point across a field boundary 355 This function does not move point across a field boundary
356 (@pxref{Fields}) unless doing so would move beyond there to a 356 (@pxref{Fields}) unless doing so would move beyond there to a
357 different line; if @var{count} is @code{nil} or 1, and point starts at 357 different line; therefore, if @var{count} is @code{nil} or 1, and
358 a field boundary, point does not move. To ignore field boundaries, 358 point starts at a field boundary, point does not move. To ignore
359 bind @code{inhibit-field-text-motion} to @code{t}. 359 field boundaries, bind @code{inhibit-field-text-motion} to @code{t}.
360 360
361 If this function reaches the end of the buffer (or of the accessible 361 If this function reaches the end of the buffer (or of the accessible
362 portion, if narrowing is in effect), it positions point there. No error 362 portion, if narrowing is in effect), it positions point there. No error
363 is signaled. 363 is signaled.
364 @end deffn 364 @end deffn