* If the runtime namestring is not available, don't try to parse it.
* Reported by Josh Elsasser.
(setf *core-pathname*
(merge-pathnames (native-pathname *core-string*)))
(/show0 "setting *RUNTIME-PATHNAME*")
- (setf *runtime-pathname* (native-pathname (os-get-runtime-executable-path)))
+ (let ((exe (os-get-runtime-executable-path)))
+ (setf *runtime-pathname* (when exe (native-pathname exe))))
(/show0 "leaving OS-COLD-INIT-OR-REINIT"))
;;; 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.29.34"
+"1.0.29.35"