diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-10 14:47:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-10 14:47:21 (GMT) |
commit | 2ffd22efd1279d41b6a871510d564e8a5151a948 (patch) | |
tree | ece226b385bf0b07f5910bee412698ac534b425e /generic/tclMain.c | |
parent | dfe9963d735b0e1754db2e270b91e3c45ece3636 (diff) | |
parent | fdc1bcf721aa672b0170af25adfe16a7650aab44 (diff) | |
download | tcl-2ffd22efd1279d41b6a871510d564e8a5151a948.zip tcl-2ffd22efd1279d41b6a871510d564e8a5151a948.tar.gz tcl-2ffd22efd1279d41b6a871510d564e8a5151a948.tar.bz2 |
Merge 8.6 Use TclHasInternalRep() macro in more places.
Diffstat (limited to 'generic/tclMain.c')
-rw-r--r-- | generic/tclMain.c | 2 |
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. |