1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(Fconstrain_to_field): Fix int/Lisp_Object mixup.

This commit is contained in:
Ken Raeburn 2006-02-05 12:15:02 +00:00
parent 99155348ea
commit d63b401895
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-02-05 Ken Raeburn <raeburn@raeburn.org>
* editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup.
2006-02-03 Kim F. Storm <storm@cua.dk>
* xdisp.c: Cache last merged escape glyph face.

View File

@ -719,7 +719,8 @@ Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
{
/* If non-zero, then the original point, before re-positioning. */
int orig_point = 0;
int fwd, prev_old, prev_new;
int fwd;
Lisp_Object prev_old, prev_new;
if (NILP (new_pos))
/* Use the current point, and afterwards, set it. */