Mercurial > emacs
changeset 9809:bc6042c687a0
(Fdecode_time): Change one XFASTINT to XINT.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 01 Nov 1994 21:06:55 +0000 |
parents | 4c43c9dbe130 |
children | c76b3e670eb3 |
files | src/editfns.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Tue Nov 01 21:05:11 1994 +0000 +++ b/src/editfns.c Tue Nov 01 21:06:55 1994 +0000 @@ -718,7 +718,7 @@ 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); }