From: Daniel Barlow Date: Fri, 8 Aug 2003 19:11:08 +0000 (+0000) Subject: 0.8.2.22 X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=f4b9ac56f10a3a83f1c4db98c6fd9428bbc5f4e3;hp=f4b9ac56f10a3a83f1c4db98c6fd9428bbc5f4e3;p=sbcl.git 0.8.2.22 Timezone/DST fixes for years after 2038. I hope. This stuff is, I can't help feeling, needlessly confusing. * (multiple-value-list (decode-universal-time (encode-universal-time 0 0 12 28 7 2040))) (0 0 12 28 7 2040 5 T 0) * (multiple-value-list (decode-universal-time (encode-universal-time 0 0 12 29 2 3040))) (0 0 12 29 2 3040 5 NIL 0) Someone decided that READ-LINE ought not to work for binary streams, so fix up SB-EXECUTABLE not to cheat in this way. ---