Skip to content

Commit 6faa512

Browse files
author
jan.nijtmans
committed
Merge tk-print-fixes branch, which contains various fixes for 'tk print'
2 parents baf50e0 + c25f149 commit 6faa512

File tree

4 files changed

+1786
-1237
lines changed

4 files changed

+1786
-1237
lines changed

changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

3941
Release Tk 9.0.2 arises from the check-in with tag `core-9-0-2`.
4042

generic/tkCmds.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)