diff options
author | sebres <sebres@users.sourceforge.net> | 2018-08-20 19:58:44 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2018-08-20 19:58:44 (GMT) |
commit | 01dd016ad89794ac85bfc2a7ccbedbb6d4c7f14f (patch) | |
tree | e3d9bb5897a4c169519b4048ee7407e7084c2d55 /win | |
parent | d660b325b58998ff0627e899550abf58bf260174 (diff) | |
download | tcl-01dd016ad89794ac85bfc2a7ccbedbb6d4c7f14f.zip tcl-01dd016ad89794ac85bfc2a7ccbedbb6d4c7f14f.tar.gz tcl-01dd016ad89794ac85bfc2a7ccbedbb6d4c7f14f.tar.bz2 |
because executable (1st argument) always proper escaped now, don't need to replace long path name of batch-executable with short path name (reduced to 16-bit applications only).
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c index cdbf467..a6a8f22 100644 --- a/win/tclWinPipe.c +++ b/win/tclWinPipe.c @@ -1492,7 +1492,7 @@ ApplicationType( return APPL_NONE; } - if ((applType == APPL_DOS) || (applType == APPL_WIN3X)) { + if (applType == APPL_WIN3X) { /* * Replace long path name of executable with short path name for * 16-bit applications. Otherwise the application may not be able to |