summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1997-10-01 05:42:45 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1997-10-01 05:42:45 +0000
commita0644e71b2c4a9535b08d591f5f919dc2c449929 (patch)
tree895f24a472311fabb1e87cdc8141af21ffa07ecb /nt
parentddb53f882c5d853bda01309cb22adc24ad079b23 (diff)
downloademacs-a0644e71b2c4a9535b08d591f5f919dc2c449929.tar.gz
addpm.c (env_vars): Fix misplaced % in SHELL entry.
Diffstat (limited to 'nt')
-rw-r--r--nt/addpm.c2
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"},