Mercurial > emacs
changeset 68626:ee9f9dd4337d
(Fconstrain_to_field): Fix int/Lisp_Object mixup.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Sun, 05 Feb 2006 12:14:20 +0000 |
parents | 2313f6def361 |
children | 471c1258574d |
files | src/editfns.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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. */