diff options
author | Jim Blandy <jimb@redhat.com> | 1992-05-10 18:15:10 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-05-10 18:15:10 +0000 |
commit | e065a56e2d6322cba165ceb5c1d46cc59c5a5148 (patch) | |
tree | 4b00ff121a271a6b9e8df84cf7eb1fb340be0e3d /src/lread.c | |
parent | 1b1f8f85bf08bd6b1cdb5ca8d731ff3b12ff60d2 (diff) | |
download | emacs-e065a56e2d6322cba165ceb5c1d46cc59c5a5148.tar.gz |
*** empty log message ***
Diffstat (limited to 'src/lread.c')
-rw-r--r-- | src/lread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c index c3157c8d618..5ffa1ea5183 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1436,7 +1436,7 @@ init_lread () /* Compute the default load-path. */ #ifdef CANNOT_DUMP normal = PATH_LOADSEARCH; - Vload_path = decode_env_path ("", normal); + Vload_path = decode_env_path (0, normal); #else if (NILP (Vpurify_flag)) normal = PATH_LOADSEARCH; @@ -1452,12 +1452,12 @@ init_lread () { Lisp_Object dump_path; - dump_path = decode_env_path ("", PATH_DUMPLOADSEARCH); + dump_path = decode_env_path (0, PATH_DUMPLOADSEARCH); if (! NILP (Fequal (dump_path, Vload_path))) - Vload_path = decode_env_path ("", normal); + Vload_path = decode_env_path (0, normal); } else - Vload_path = decode_env_path ("", normal); + Vload_path = decode_env_path (0, normal); #endif /* Warn if dirs in the *standard* path don't exist. */ |