summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-04-03 08:50:21 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-04-03 08:50:21 (GMT)
commit9a6f2b00322c3aa712b96f678d3d72d55e89c503 (patch)
tree74c0b4cee26c60a9b026bf2614c99f81061b4576 /win
parent04270bbbcf31702aaab64f0c01e2109bb82e7cad (diff)
parent63ec99cd74c727ff07213127dd09d2d48e7736b1 (diff)
downloadtcl-9a6f2b00322c3aa712b96f678d3d72d55e89c503.zip
tcl-9a6f2b00322c3aa712b96f678d3d72d55e89c503.tar.gz
tcl-9a6f2b00322c3aa712b96f678d3d72d55e89c503.tar.bz2
Merge 8.6
Diffstat (limited to 'win')
-rw-r--r--win/tclWinInit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c
index 569d7f3..44067aa 100644
--- a/win/tclWinInit.c
+++ b/win/tclWinInit.c
@@ -83,11 +83,10 @@ typedef struct {
TclWinProcs tclWinProcs;
/*
- * The following arrays contain the human readable strings for the Windows
+ * The following arrays contain the human readable strings for the
* processor values.
*/
-
#define NUMPROCESSORS 11
static const char *const processors[NUMPROCESSORS] = {
"intel", "mips", "alpha", "ppc", "shx", "arm", "ia64", "alpha64", "msil",
@@ -540,7 +539,8 @@ TclpSetVariables(
Tcl_SetVar2(interp, "tcl_platform", "platform", "windows",
TCL_GLOBAL_ONLY);
- Tcl_SetVar2(interp, "tcl_platform", "os", "Windows NT", TCL_GLOBAL_ONLY);
+ Tcl_SetVar2(interp, "tcl_platform", "os",
+ "Windows NT", TCL_GLOBAL_ONLY);
wsprintfA(buffer, "%d.%d", osInfo.dwMajorVersion, osInfo.dwMinorVersion);
Tcl_SetVar2(interp, "tcl_platform", "osVersion", buffer, TCL_GLOBAL_ONLY);
if (sys.oemId.wProcessorArchitecture < NUMPROCESSORS) {