diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-12-10 21:04:33 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-12-10 21:04:33 +0100 |
commit | 40df9bc78dccd8448154f7fab9e23e885e6d84c0 (patch) | |
tree | e26a105b1137c01b6d87239d6899f01a461d6cd3 | |
parent | 4546ac1e5396f3ab885df9a1398863c3387f4fc3 (diff) |
FORMAT-DATE: Fix time zone handling.
darcs-hash:2ca96eaebb542646ff761ab4abc5b24d8f9aa58c
-rw-r--r-- | utils.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -195,7 +195,7 @@ ELEMENT-TYPE as the stream's." :younger-than (compute-script-last-modified-date)) (apply #'%real-format-date destination date-control-string universal-time - (and time-zone-supplied-p time-zone)))) + (and time-zone-supplied-p (list time-zone))))) (defun single-object (list &optional (errorp t)) |