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 | a0644e71b2c4a9535b08d591f5f919dc2c449929 (patch) | |
tree | 895f24a472311fabb1e87cdc8141af21ffa07ecb /nt | |
parent | ddb53f882c5d853bda01309cb22adc24ad079b23 (diff) | |
download | emacs-a0644e71b2c4a9535b08d591f5f919dc2c449929.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"}, |