Mercurial > emacs
changeset 23809:2a6ad78388b3
(check_windows_init_file): Use decode_env_path when
using EMACSLOADPATH.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Thu, 03 Dec 1998 03:14:46 +0000 |
parents | 54a5f83e7b67 |
children | e473bf3419a9 |
files | src/w32.c |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/w32.c Thu Dec 03 03:12:04 1998 +0000 +++ b/src/w32.c Thu Dec 03 03:14:46 1998 +0000 @@ -3028,13 +3028,15 @@ if (!noninteractive && !inhibit_window_system) { extern Lisp_Object Vwindow_system, Vload_path, Qfile_exists_p; + Lisp_Object objs[2]; Lisp_Object full_load_path; Lisp_Object init_file; int fd; + objs[0] = Vload_path; + objs[1] = decode_env_path (0, (getenv ("EMACSLOADPATH"))); + full_load_path = Fappend (2, objs); init_file = build_string ("term/w32-win"); - full_load_path = Fcons (build_string (getenv ("EMACSLOADPATH")), - Vload_path); fd = openp (full_load_path, init_file, ".el:.elc", NULL, 0); if (fd < 0) {