]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdecode_time): Change one XFASTINT to XINT.
authorRichard M. Stallman <rms@gnu.org>
Tue, 1 Nov 1994 21:06:55 +0000 (21:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 1 Nov 1994 21:06:55 +0000 (21:06 +0000)
src/editfns.c

index 31e4fcb4767eb387dd3cd5c2b271d59ec94c081f..f7fb2eb03d8d170d66eef480ecdd2c79b9af06a3 100644 (file)
@@ -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);
 }