From 7ff147735137794affec748b42a4a77db7be27c8 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Wed, 12 Jul 2006 08:21:23 +0000 Subject: [PATCH] (sit_for): Use XINT. --- src/dispnew.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index 018717e591..748456ba3a 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6521,7 +6521,7 @@ sit_for (timeout, reading, do_display) if (INTEGERP (timeout)) { - sec = XFASTINT (timeout); + sec = XINT (timeout); usec = 0; } else if (FLOATP (timeout)) -- 2.39.2