diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-10-01 05:42:45 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-10-01 05:42:45 +0000 |
commit | 0655d4d4b6f9b63986fd4062170f444b31d5079c (patch) | |
tree | bb7a3057bf9c0285069f381eacc0290ac26746f5 /nt | |
parent | ffa0434b9d90991cd7c1324c4edf4a33d5ae4c8f (diff) | |
download | emacs-0655d4d4b6f9b63986fd4062170f444b31d5079c.tar.gz |
addpm.c (env_vars): Fix misplaced % in SHELL entry.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/addpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/addpm.c b/nt/addpm.c index 40e57826e43..2e536df03a7 100644 --- a/nt/addpm.c +++ b/nt/addpm.c @@ -55,7 +55,7 @@ env_vars[] = { {"emacs_dir", NULL}, {"EMACSLOADPATH", "%emacs_dir%/site-lisp;%emacs_dir%/lisp"}, - {"SHELL", "%emacs_dir/bin/cmdproxy.exe%"}, + {"SHELL", "%emacs_dir%/bin/cmdproxy.exe"}, {"EMACSDATA", "%emacs_dir%/etc"}, {"EMACSPATH", "%emacs_dir%/bin"}, {"EMACSLOCKDIR", "%emacs_dir%/lock"}, |