* Support for pathnames with directory NIL was broken.
* bug fix: SERVE-EVENT occasionally signaled an error about bogus
file descriptors when there were none.
* bug fix: DEFINE-COMPILER-MACRO support of destructuring lambda-lists
- was broken. (reported by Willem Broekema)
+ was broken. (reporteed by Willem Broekema)
+ * bug fix: SB-EXT:NATIVE-NAMESTRING on Windows did not work on
+ pathnames without a directory.
changes in sbcl-1.0.21 relative to 1.0.20:
* new feature: the compiler is able to track the effective type of a
(write-string device s)
(write-char #\: s))
(tagbody
- (ecase (pop directory)
- (:absolute (write-char #\\ s))
- (:relative))
+ (when directory
+ (ecase (pop directory)
+ (:absolute (write-char #\\ s))
+ (:relative)))
(unless directory (go :done))
:subdir
(let ((piece (pop directory)))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.21.12"
+"1.0.21.13"