comparison lispref/positions.texi @ 40040:51d732cff5a4

(Text Lines): Mention `inhibit-field-text-motion' too.
author Miles Bader <miles@gnu.org>
date Fri, 19 Oct 2001 06:10:50 +0000
parents d576274a42f4
children df172f62a587
comparison
equal deleted inserted replaced
40039:d576274a42f4 40040:51d732cff5a4
329 329
330 This command does not move point across a field boundary 330 This command 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; if @var{count} is @code{nil} or 1, and point starts at
333 a field boundary, point does not move. To ignore field boundaries, 333 a field boundary, point does not move. To ignore field boundaries,
334 use the @code{forward-line} function instead. For instance, 334 either bind @code{inhibit-field-text-motion} to @code{t}, or use the
335 @code{forward-line} function instead. For instance,
335 @code{(forward-line 0)} does the same thing as 336 @code{(forward-line 0)} does the same thing as
336 @code{(beginning-of-line)}, except that it ignores field boundaries. 337 @code{(beginning-of-line)}, except that it ignores field boundaries.
337 338
338 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
339 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
352 @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.
353 354
354 This command does not move point across a field boundary 355 This command does not move point across a field boundary
355 (@pxref{Fields}) unless doing so would move beyond there to a 356 (@pxref{Fields}) unless doing so would move beyond there to a
356 different line; if @var{count} is @code{nil} or 1, and point starts at 357 different line; if @var{count} is @code{nil} or 1, and point starts at
357 a field boundary, point does not move. 358 a field boundary, point does not move. To ignore field boundaries,
359 bind @code{inhibit-field-text-motion} to @code{t}.
358 360
359 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
360 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
361 is signaled. 363 is signaled.
362 @end deffn 364 @end deffn