* Whereas these used to error erroneously, now they error properly.
(:include host
(parse #'parse-logical-namestring)
(parse-native
- (lambda (x)
+ (lambda (&rest x)
(error "called PARSE-NATIVE-NAMESTRING using a ~
- logical host: ~S" x)))
+ logical host: ~S" (first x))))
(unparse #'unparse-logical-namestring)
(unparse-native
- (lambda (x)
+ (lambda (&rest x)
(error "called NATIVE-NAMESTRING using a ~
- logical host: ~S" x)))
+ logical host: ~S" (first x))))
(unparse-host
(lambda (x)
(logical-host-name (%pathname-host x))))
;;; 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.19.34"
+"1.0.19.35"