diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-04 22:37:44 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-04 22:37:44 (GMT) |
commit | 3b1d9efc79aa9331ecd4ce3f13fcdaeeb93f119b (patch) | |
tree | 99e1f7cfc9718a9fcd88fce062dea1e1c76b03a0 /win/tclWinPipe.c | |
parent | d1aae73bf3ca7cccea215aba501506b46a1c7b03 (diff) | |
parent | 9fd97a3b3010b69c886151f7238fdf5fb14b626b (diff) | |
download | tcl-3b1d9efc79aa9331ecd4ce3f13fcdaeeb93f119b.zip tcl-3b1d9efc79aa9331ecd4ce3f13fcdaeeb93f119b.tar.gz tcl-3b1d9efc79aa9331ecd4ce3f13fcdaeeb93f119b.tar.bz2 |
Merge 8.6
Diffstat (limited to 'win/tclWinPipe.c')
-rw-r--r-- | win/tclWinPipe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c index bd95ea4..597d5df 100644 --- a/win/tclWinPipe.c +++ b/win/tclWinPipe.c @@ -1519,9 +1519,9 @@ BuildCommandLine( Tcl_DString ds; /* characters to enclose in quotes if unpaired quote flag set */ - const static char *specMetaChars = "&|^<>!()%"; - /* characters to enclose in quotes in any case (regardless unpaired-flag) */ - const static char *specMetaChars2 = "%"; + static const char specMetaChars[] = "&|^<>!()%"; + /* character to enclose in quotes in any case (regardless unpaired-flag) */ + static const char specMetaChars2[] = "%"; /* Quote flags: * CL_ESCAPE - escape argument; |