summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-01-04 23:37:15 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-01-04 23:37:15 (GMT)
commit9a77299b784c61d468e8b3fb76941e541fe71524 (patch)
tree19b3b58a2768d199371d5d31eee7cf5604ce9634 /win
parent2b6aa28d40556579e99c58e7788107166532fe94 (diff)
parent3b1d9efc79aa9331ecd4ce3f13fcdaeeb93f119b (diff)
downloadtcl-9a77299b784c61d468e8b3fb76941e541fe71524.zip
tcl-9a77299b784c61d468e8b3fb76941e541fe71524.tar.gz
tcl-9a77299b784c61d468e8b3fb76941e541fe71524.tar.bz2
Merge 8.7
Diffstat (limited to 'win')
-rw-r--r--win/tclWinPipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinPipe.c b/win/tclWinPipe.c
index e448493..4659021 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;