Hi
I got the ccl for windows from the trunk ( http://svn.clozure.com/publicsvn/openmcl/trunk/windows/ccl) so it must be up-to-date. I put my ccl-init.lisp to my HOME directory (pointed to by HOME env variable). Every time I load ccl, the ccl-init file gets ignored. I started to debug it and found out that in user-homedir-pathname there is a clause: (native-to-directory-pathname (or #+ccl-0711 (getenv "HOME") (get-user-home-dir (getuid))))
so naturally, since my ccl has ccl-1.2 and ccl-1.3 features this prevents it from getting home pathname from the HOME environment variable. Instead it tries to load it from get-user-home-dir which is "c:\Documents and Settings..." in my case. Is this a bug or a feature?
Thank you, Andrei