Mercurial > emacs
diff src/syntax.c @ 27080:b1afaefff576
(Fforward_word): Undo previous change.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Sat, 01 Jan 2000 17:23:34 +0000 |
| parents | 638b309011d9 |
| children | 9c61956399b2 |
line wrap: on
line diff
--- a/src/syntax.c Sat Jan 01 17:06:50 2000 +0000 +++ b/src/syntax.c Sat Jan 01 17:23:34 2000 +0000 @@ -1235,10 +1235,9 @@ val = XINT (count) > 0 ? ZV : BEGV; /* Avoid jumping out of an input field. */ - if (NILP (Vinhibit_field_text_motion)) - val = XFASTINT (Fconstrain_to_field (make_number (val), make_number (PT), - Qt, Qnil)); - + val = XFASTINT (Fconstrain_to_field (make_number (val), make_number (PT), + Qt, Qnil)); + SET_PT (val); return val == orig_val ? Qt : Qnil; }
