1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/japanese/tk42/files/patch-aa
Satoshi Asami 2be5a55cf3 Japanized tk ver 4.2. Together with the tcl import, closes PR
ports/2764.

Submitted by:   Taguchi Takeshi <taguchi@tohoku.iij.ad.jp>
1997-03-02 13:02:07 +00:00

13 lines
411 B
Plaintext

--- ./generic/tkTextDisp.c.ORIG Mon Feb 10 16:10:21 1997
+++ ./generic/tkTextDisp.c Mon Feb 10 16:12:52 1997
@@ -4380,7 +4380,8 @@
for (count = charsThatFit, p += charsThatFit-1; count > 0;
count--, p--) {
#ifdef KANJI
- if (ISWSPACE(*p)) {
+ /* following is by Mr.Furuse(Jun.Furuse@inria.fr) */
+ if (ISWSPACE(*p) || ISWKANJI(*p)) {
#else
if (isspace(UCHAR(*p))) {
#endif /* KANJI */