]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fforward_word): Undo previous change.
authorGerd Moellmann <gerd@gnu.org>
Sat, 1 Jan 2000 17:23:34 +0000 (17:23 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sat, 1 Jan 2000 17:23:34 +0000 (17:23 +0000)
src/syntax.c

index 1db16c589f7bd9595bf9b4094644cdf976c7cb88..ceb48f3ec37994937b92ced4c93daec683ea6087 100644 (file)
@@ -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;
 }