summaryrefslogtreecommitdiff
path: root/src/editfns.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@raeburn.org>2006-02-05 12:15:02 +0000
committerKen Raeburn <raeburn@raeburn.org>2006-02-05 12:15:02 +0000
commitd63b401895577d448ecee8c31ac20b6f693de14d (patch)
tree945934b8b95fd10b92bd99020ab1f2a2c0dfc5ed /src/editfns.c
parent99155348ea17091cb91a99bf8e99851a1c6204b9 (diff)
downloademacs-d63b401895577d448ecee8c31ac20b6f693de14d.tar.gz
(Fconstrain_to_field): Fix int/Lisp_Object mixup.
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 9be9232a9c7..5bf4eb738ae 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -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. */