fixed a probable bug in invoking format-time

svn: r14707
This commit is contained in:
Eli Barzilay 2009-05-04 06:37:27 +00:00
parent 57ff3c2486
commit 5cb9e66cd2

View File

@ -107,10 +107,8 @@
[(< zo-sec ss-sec) (error 'compile-zo [(< zo-sec ss-sec) (error 'compile-zo
"date for newly created .zo file (~a @ ~a) ~ "date for newly created .zo file (~a @ ~a) ~
is before source-file date (~a @ ~a)~a" is before source-file date (~a @ ~a)~a"
zo-name zo-name (format-time zo-sec)
(format-time (seconds->date zo-sec)) ss-name (format-time ss-sec)
ss-name
(format-time (seconds->date ss-sec))
(if (> ss-sec (current-seconds)) (if (> ss-sec (current-seconds))
", which appears to be in the future" ", which appears to be in the future"
""))])) ""))]))