aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-01 21:06:55 +0000
committerRichard M. Stallman1994-11-01 21:06:55 +0000
commit3463f90ac062d10a06e5d4ecf4fd26a8e6c60fad (patch)
tree172a954fef30eb5b9db989e93bfbfab305feb7c8 /src
parentdd254b21da63df630aff66970fbc8fb9eb3edbbe (diff)
downloademacs-3463f90ac062d10a06e5d4ecf4fd26a8e6c60fad.tar.gz
emacs-3463f90ac062d10a06e5d4ecf4fd26a8e6c60fad.zip
(Fdecode_time): Change one XFASTINT to XINT.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c2
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