# HG changeset patch # User Ken Raeburn # Date 1139141660 0 # Node ID ee9f9dd4337d84be4fdaff872a4c4fde601cf8ac # Parent 2313f6def361ba775e598e097f010258a40a19bc (Fconstrain_to_field): Fix int/Lisp_Object mixup. diff -r 2313f6def361 -r ee9f9dd4337d src/editfns.c --- a/src/editfns.c Sun Feb 05 06:11:41 2006 +0000 +++ b/src/editfns.c Sun Feb 05 12:14:20 2006 +0000 @@ -719,7 +719,8 @@ { /* 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. */