From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16923 invoked from network); 22 Apr 2008 17:56:58 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 22 Apr 2008 17:56:58 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 28878 invoked from network); 22 Apr 2008 17:56:53 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 22 Apr 2008 17:56:53 -0000 Received: (qmail 13968 invoked by alias); 22 Apr 2008 17:56:50 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 24864 Received: (qmail 13951 invoked from network); 22 Apr 2008 17:56:50 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 22 Apr 2008 17:56:50 -0000 Received: from rcpt-expgw.biglobe.ne.jp (rcpt-expgw.biglobe.ne.jp [133.205.19.65]) by bifrost.dotsrc.org (Postfix) with ESMTP id 79790808A37A for ; Tue, 22 Apr 2008 19:56:41 +0200 (CEST) Received: from smtp-gw.biglobe.ne.jp by rcpt-expgw.biglobe.ne.jp (kbkr/0208160408) with ESMTP id m3MHubeH003290 for ; Wed, 23 Apr 2008 02:56:37 +0900 X-Biglobe-Sender: Received: from [192.168.0.3] (125.197.59.144 [125.197.59.144]) by smtp-gw.biglobe.ne.jp id CAIDAC15AFDC; Wed, 23 Apr 2008 02:56:37 +0900 (JST) Message-Id: From: "Jun T." To: zsh-workers@sunsite.dk In-Reply-To: <31339.1208861418@csr.com> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Subject: Re: PATCH: alternative wcwidth() implementation Date: Wed, 23 Apr 2008 02:56:37 +0900 References: <31339.1208861418@csr.com> X-Mailer: Apple Mail (2.919.2) X-Virus-Scanned: ClamAV 0.91.2/6882/Tue Apr 22 19:33:01 2008 on bifrost X-Virus-Status: Clean >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!