From: Gerd Moellmann Date: Sat, 1 Jan 2000 17:23:34 +0000 (+0000) Subject: (Fforward_word): Undo previous change. X-Git-Tag: emacs-pretest-21.0.90~5563 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=64aa4eb1f3a694cee3230cf0c8c6ec1853a2dabc;p=emacs.git (Fforward_word): Undo previous change. --- diff --git a/src/syntax.c b/src/syntax.c index 1db16c589f7..ceb48f3ec37 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1235,10 +1235,9 @@ and the function returns nil. Field boundaries are not noticed if\n\ 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; }