From 3463f90ac062d10a06e5d4ecf4fd26a8e6c60fad Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 1 Nov 1994 21:06:55 +0000 Subject: [PATCH] (Fdecode_time): Change one XFASTINT to XINT. --- src/editfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editfns.c b/src/editfns.c index 31e4fcb4767..f7fb2eb03d8 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -718,7 +718,7 @@ ZONE is an integer indicating the number of seconds east of Greenwich.\n\ list_args[5] = XFASTINT (decoded_time->tm_year + 1900); list_args[6] = XFASTINT (decoded_time->tm_wday); list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil; - list_args[8] = XFASTINT (decoded_time->tm_gmtoff); + list_args[8] = XINT (decoded_time->tm_gmtoff); return Flist (9, list_args); } -- 2.39.5