*COMPILE-FILE-PATHNAME* should contain (merge-pathnames pathname),
not the bare pathname itself.
;;;; -*- coding: utf-8; -*-
changes in sbcl-0.9.7 relative to sbcl-0.9.6:
+ * bug fix: *COMPILE-FILE-PATHNAME* now contains the user's pathname
+ merged with *DEFAULT-PATHNAME-DEFAULTS*.
* optimization: performance improvements to IO on file streams of
:ELEMENT-TYPE CHARACTER
;;; Given a pathname, return a SOURCE-INFO structure.
(defun make-file-source-info (file external-format)
(let ((file-info (make-file-info :name (truename file)
- :untruename file
+ :untruename (merge-pathnames file)
:external-format external-format
:write-date (file-write-date file))))
;;; 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".)
-"0.9.6.9"
+"0.9.6.10"