mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Portability
- Fixed wcwidth error in the #ifdef CYGWIN.
This commit is contained in:
parent
55b5149be0
commit
6a0c61ad27
1 changed files with 2 additions and 1 deletions
|
@ -229,8 +229,9 @@ int mk_wcwidth(wchar_t ucs)
|
|||
(ucs >= 0xfe10 && ucs <= 0xfe19) || /* Vertical forms */
|
||||
(ucs >= 0xfe30 && ucs <= 0xfe6f) || /* CJK Compatibility Forms */
|
||||
(ucs >= 0xff00 && ucs <= 0xff60) || /* Fullwidth Forms */
|
||||
(ucs >= 0xffe0 && ucs <= 0xffe6) ||
|
||||
(ucs >= 0xffe0 && ucs <= 0xffe6)
|
||||
#ifndef CYGWIN
|
||||
||
|
||||
(ucs >= 0x20000 && ucs <= 0x2fffd) ||
|
||||
(ucs >= 0x30000 && ucs <= 0x3fffd)
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue