mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
2be5a55cf3
ports/2764. Submitted by: Taguchi Takeshi <taguchi@tohoku.iij.ad.jp>
13 lines
411 B
Plaintext
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 */
|