HOME environment-variables
Hi all, I've run into some confusion with environment-variables in LW Enterprise 5.0.2, running on WinXP. As an example with this minimal startup file ... (load-all-patches) (setf (lw:environment-variable "HOMEDIR") "D:/") (setf (lw:environment-variable "HOMEPATH") "/LISP/") .... the respective environment-variables are confirmed in the Listener after startup. But the following suggests something is amiss (perhaps with my expectation): CL-USER 3> (pathname "~/test/") #P"C:/LISP/test" I was expecting the pathname to be prefixed with "D:", not "C:". B.Connoy