diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-01 21:06:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-01 21:06:55 +0000 |
commit | c45e53c8c07db14e8d2df372583dd112a9715ab7 (patch) | |
tree | 1d43f160740d271b197428b63d97bb27024af05b /src/editfns.c | |
parent | 45c6768e6babd0054441243b0226cb56149cf98b (diff) | |
download | emacs-c45e53c8c07db14e8d2df372583dd112a9715ab7.tar.gz |
(Fdecode_time): Change one XFASTINT to XINT.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |