Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: alternative wcwidth() implementation
- X-seq: zsh-workers 24864
- From: "Jun T." <takimoto-j@xxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Re: PATCH: alternative wcwidth() implementation
- Date: Wed, 23 Apr 2008 02:56:37 +0900
- In-reply-to: <31339.1208861418@xxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- References: <31339.1208861418@xxxxxxx>
>This attempts to test for a broken wcwidth() and ...
Thank you!
There are two typos:
configure.ac, line 2323
if test x$zsh_cv_c_broken_wcwdith = xyes; then
should be
if test x$zsh_cv_c_broken_wcwidth = xyes; then
zsh.h, line 2260
#define WCWIDTH(wc) wcwidth_mk(wc)
should be
#define WCWIDTH(wc) mk_wcwidth(wc)
Now combining character support works on MacOS X!
Messages sorted by:
Reverse Date,
Date,
Thread,
Author