Fix bug #16453.
* syntax.c (Fforward_word): Call Fconstrain_to_field with ESCAPE-FROM-EDGE set to `nil' (Bug#16453).
This commit is contained in:
parent
fa49abf8bf
commit
bfdd79d309
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-02-05 Bastien Guerry <bzg@gnu.org>
|
||||
|
||||
* syntax.c (Fforward_word): Call Fconstrain_to_field with
|
||||
ESCAPE-FROM-EDGE set to `nil' (Bug#16453).
|
||||
|
||||
2014-02-05 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* xdisp.c (note_mouse_highlight): When entering a margin area show
|
||||
|
|
|
@ -1485,7 +1485,7 @@ and the function returns nil. Field boundaries are not noticed if
|
|||
|
||||
/* Avoid jumping out of an input field. */
|
||||
tmp = Fconstrain_to_field (make_number (val), make_number (PT),
|
||||
Qt, Qnil, Qnil);
|
||||
Qnil, Qnil, Qnil);
|
||||
val = XFASTINT (tmp);
|
||||
|
||||
SET_PT (val);
|
||||
|
|
Loading…
Add table
Reference in a new issue