From: Richard M. Stallman Date: Tue, 1 Nov 1994 21:06:55 +0000 (+0000) Subject: (Fdecode_time): Change one XFASTINT to XINT. X-Git-Tag: emacs-19.34~6046 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3463f90ac062d10a06e5d4ecf4fd26a8e6c60fad;p=emacs.git (Fdecode_time): Change one XFASTINT to XINT. --- 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); }