summaryrefslogtreecommitdiffstats
path: root/generic/tclMain.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-04-10 14:47:21 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-04-10 14:47:21 (GMT)
commit9ac22a9200db4d034922f3f15194cc1f3568e230 (patch)
treeece226b385bf0b07f5910bee412698ac534b425e /generic/tclMain.c
parentd30a8fa3d452bd96dd59335d6f94e12310ef8e3e (diff)
parentc6410375c4529e798dfdef177ee755680007fe58 (diff)
downloadtcl-9ac22a9200db4d034922f3f15194cc1f3568e230.zip
tcl-9ac22a9200db4d034922f3f15194cc1f3568e230.tar.gz
tcl-9ac22a9200db4d034922f3f15194cc1f3568e230.tar.bz2
Merge 8.6 Use TclHasInternalRep() macro in more places.
Diffstat (limited to 'generic/tclMain.c')
-rw-r--r--generic/tclMain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclMain.c b/generic/tclMain.c
index d23cd7b..3ee3fbc 100644
--- a/generic/tclMain.c
+++ b/generic/tclMain.c
@@ -360,7 +360,7 @@ Tcl_MainEx(
is.tty = isatty(0);
Tcl_SetVar2Ex(interp, "tcl_interactive", NULL,
- Tcl_NewWideIntObj(!path && is.tty), TCL_GLOBAL_ONLY);
+ Tcl_NewBooleanObj(!path && is.tty), TCL_GLOBAL_ONLY);
/*
* Invoke application-specific initialization.