Do not set *DEFAULT-PATHNAME-DEFAULTS* because some people expect it to be empty.

This commit is contained in:
jjgarcia 2004-01-08 11:23:50 +00:00
parent 90a0382ae8
commit 0eae764528

View file

@ -250,7 +250,13 @@ cl_boot(int argc, char **argv)
ECL_SET(@'*print-case*', @':upcase');
cl_core.pathname_translations = Cnil;
#if 0
ECL_SET(@'*default-pathname-defaults*', si_getcwd());
#else
ECL_SET(@'*default-pathname-defaults*',
make_pathname(Cnil, Cnil, Cnil, Cnil, Cnil, Cnil));
#endif
@si::pathname-translations(2,make_simple_string("SYS"),
cl_list(1,cl_list(2,make_simple_string("*.*"),
make_simple_string("./*.*"))));