comparison lispref/text.texi @ 27093:4b1a67a46d8c

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Mon, 03 Jan 2000 00:19:17 +0000
parents ef5e7bbe6f19
children f6b52258db6a
comparison
equal deleted inserted replaced
27092:60f5b0f50db9 27093:4b1a67a46d8c
3131 @defun delete-field &optional pos 3131 @defun delete-field &optional pos
3132 @tindex delete-field 3132 @tindex delete-field
3133 This function deletes the text of the field specified by @var{pos}. 3133 This function deletes the text of the field specified by @var{pos}.
3134 @end defun 3134 @end defun
3135 3135
3136 @deffn beginning-of-line-or-field &optional count
3137 @tindex beginning-of-line-or-field
3138 Like @code{beginning-of-line}, except that this function does not move
3139 across a field boundary (@pxref{Fields}), unless it moves to another
3140 line beyond the one that contains the field boundary. Therefore, if
3141 @var{count} is zero, and point is initially at a field boundary, point
3142 does not move.
3143 @end deffn
3144
3145 @deffn end-of-line-or-field &optional count
3146 @tindex end-of-line-or-field
3147 Like @code{end-of-line}, except that this function does not move
3148 across a field boundary (@pxref{Fields}), unless it moves to another
3149 line beyond the one that contains the field boundary.
3150 @end deffn
3151
3136 @defun constrain-to-field new-pos old-pos &optional escape-from-edge only-in-line 3152 @defun constrain-to-field new-pos old-pos &optional escape-from-edge only-in-line
3137 @tindex constrain-to-field 3153 @tindex constrain-to-field
3138 This function ``constrains'' @var{new-pos} to the field that 3154 This function ``constrains'' @var{new-pos} to the field that
3139 @var{old-pos} belongs to---in other words, it returns the position 3155 @var{old-pos} belongs to---in other words, it returns the position
3140 closest to @var{new-pos} that is in the same field as @var{old-pos}. 3156 closest to @var{new-pos} that is in the same field as @var{old-pos}.