1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

RDB also points out we don't need the CJK `not recommended for

general use' wcwidth function, so we condition it out to save space.

[originally from svn r1248]
This commit is contained in:
Simon Tatham 2001-09-07 23:00:37 +00:00
parent 8692657fdd
commit ea788e29c7

View File

@ -144,7 +144,7 @@ int wcswidth(const wchar_t *pwcs, size_t n)
return width;
}
#if 0 /* RDB: we don't need the cjk version */
/*
* The following function is the same as wcwidth(), except that
* spacing characters in the East Asian Ambiguous (A) category as
@ -231,3 +231,4 @@ int wcswidth_cjk(const wchar_t *pwcs, size_t n)
return width;
}
#endif