diff options
Diffstat (limited to 'src')
| -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\ | |||
| 718 | list_args[5] = XFASTINT (decoded_time->tm_year + 1900); | 718 | list_args[5] = XFASTINT (decoded_time->tm_year + 1900); |
| 719 | list_args[6] = XFASTINT (decoded_time->tm_wday); | 719 | list_args[6] = XFASTINT (decoded_time->tm_wday); |
| 720 | list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil; | 720 | list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil; |
| 721 | list_args[8] = XFASTINT (decoded_time->tm_gmtoff); | 721 | list_args[8] = XINT (decoded_time->tm_gmtoff); |
| 722 | return Flist (9, list_args); | 722 | return Flist (9, list_args); |
| 723 | } | 723 | } |
| 724 | 724 | ||