; * src/editfns.c (Fline_beginning_position): Remove redundant parens.
This commit is contained in:
parent
962cb44eea
commit
6a1e3e8684
1 changed files with 1 additions and 1 deletions
|
@ -759,7 +759,7 @@ boundaries, bind `inhibit-field-text-motion' to t.
|
|||
This function does not move point. */)
|
||||
(Lisp_Object n)
|
||||
{
|
||||
ptrdiff_t count, charpos = (bol (n, &count));
|
||||
ptrdiff_t count, charpos = bol (n, &count);
|
||||
/* Return END constrained to the current input field. */
|
||||
return Fconstrain_to_field (make_fixnum (charpos), make_fixnum (PT),
|
||||
count != 0 ? Qt : Qnil,
|
||||
|
|
Loading…
Add table
Reference in a new issue