The following code (and several others like it) is used to determine the
value of user-init-file,
(concat "~" init-file-user "/.emacs")
However, cygwin32 doesn't seem to handle the ~username convention.
Is there are suggested way to work around this problem? Or should the code
be changed? For instances, the HOME environment variable, if set, could be
used.
(let ((home-directory
(or (getenv "HOME") (concat "~" init-file-user))))
... (concat home-directory "/.emacs") ...
--
Paul Stodghill <stodghil(a)cs.cornell.edu>
http://www.cs.cornell.edu/stodghil/