File tree Expand file tree Collapse file tree 4 files changed +1786
-1237
lines changed
Expand file tree Collapse file tree 4 files changed +1786
-1237
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ to the userbase.
3535 - [ MS-Win canvas arcs with small extent are drawn 360 dregrees] ( https://core.tcl-lang.org/tk/info/6051a9 )
3636 - [ pixel values can report false list lengths] ( https://core.tcl-lang.org/tk/info/2a0a83 )
3737 - [ Xft text is unusable for 32-bit visual when default visual is 24-bit] ( https://core.tcl-lang.org/tk/info/c23f79 )
38+ - [ tk print: several issues printing i18n text] ( https://core.tcl-lang.org/tk/info/4e7a78 )
39+ - [ tk print, canvas: raw smooth not implemented] ( https://core.tcl-lang.org/tk/info/e10819 )
3840
3941Release Tk 9.0.2 arises from the check-in with tag ` core-9-0-2 ` .
4042
Original file line number Diff line number Diff line change @@ -901,13 +901,13 @@ UseinputmethodsCmd(
901901 dispPtr = ((TkWindow * ) tkwin )-> dispPtr ;
902902 if (objc == 2 + skip ) {
903903
904- int boolVal ;
904+ int boolValue ;
905905
906906 if (Tcl_GetBooleanFromObj (interp , objv [1 + skip ],
907- & boolVal ) != TCL_OK ) {
907+ & boolValue ) != TCL_OK ) {
908908 return TCL_ERROR ;
909909 }
910- if (boolVal && (dispPtr -> inputMethod != NULL )) {
910+ if (boolValue && (dispPtr -> inputMethod != NULL )) {
911911 dispPtr -> flags |= TK_DISPLAY_USE_IM ;
912912 } else {
913913 dispPtr -> flags &= ~TK_DISPLAY_USE_IM ;
You can’t perform that action at this time.
0 commit comments