diff --git a/src/code/time.lisp b/src/code/time.lisp index 51457f5179f616d4cdbddb6e184cdca7462e48e3..bf853a2b6a4d6cebb2e541931797a7346a6f36ea 100644 --- a/src/code/time.lisp +++ b/src/code/time.lisp @@ -223,8 +223,11 @@ (type (mod 24) hour) (type (integer 1 31) date) (type (integer 1 12) month) - (type (or (integer 0 99) (integer 1900)) year) - (type (or null rational) time-zone)) + ;; 1899 to account for time zones that are equivalent to 1900. + (type (or (integer 0 99) (integer 1899)) year) + (type (or null rational) time-zone) + ;; Result must be non-negative integer! + (values (integer 0))) (let* ((year (if (< year 100) (pick-obvious-year year) year)) diff --git a/tests/issues.lisp b/tests/issues.lisp index 6bd341344d5a089e64a5757a7b05f6b79b14d043..4e5640c2206c2775f012e246f61a231497e14cc8 100644 --- a/tests/issues.lisp +++ b/tests/issues.lisp @@ -347,3 +347,8 @@ (assert (null (set-difference directories '(".dir" "dir") :test #'string-equal))))) + +(define-test issue.36 + (:tag :issues) + (loop for k from 1 to 24 do + (assert-equal 0 (encode-universal-time 0 0 (- 24 k) 31 12 1899 k))))