summaryrefslogtreecommitdiff
path: root/nt/addpm.c
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
commit0655d4d4b6f9b63986fd4062170f444b31d5079c (patch)
treebb7a3057bf9c0285069f381eacc0290ac26746f5 /nt/addpm.c
parentffa0434b9d90991cd7c1324c4edf4a33d5ae4c8f (diff)
downloademacs-0655d4d4b6f9b63986fd4062170f444b31d5079c.tar.gz
addpm.c (env_vars): Fix misplaced % in SHELL entry.
Diffstat (limited to 'nt/addpm.c')
-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"},