X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_NONE,TW_WC X-Spam-Check-By: sourceware.org From: Bengt Larsson To: cygwin AT cygwin DOT com Subject: Re: Mg3a - a version of Mg2a developed on Cygwin Date: Thu, 24 Feb 2011 11:56:47 +0100 Reply-To: cygwin AT cygwin DOT com Message-ID: <4nccm61h5q3f207me4u69qfk6i0vqrd2f2@4ax.com> References: <35i9m6pt07r66fib882etg5tgirkr413co AT 4ax DOT com> <0105D5C1E0353146B1B222348B0411A209DAA0FF98 AT NIHMLBX02 DOT nih DOT gov> <20110224085617 DOT GM9392 AT calimero DOT vinschen DOT de> In-Reply-To: <20110224085617.GM9392@calimero.vinschen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Corinna Vinschen wrote: >Just a hint: > >When on Cygwin, you might better use Cygwin's(*) wcwidth function. It's >based on the same code from Markus Kuhn, but it interacts with the >setlocale function to make sure that the width returned for the CJK >ambiguous width characters makes sense in the given locale. Plus, it >supports a Cygwin-specific locale modifier '@cjknarrow' which allows the >user to modify this behaviour. When using your own wcwidth, you're >giving up on this feature. > >Better yet, convert wide chars to wide strings and use the wcswidth >function. In contrast to wcwidth, it can also handle surrogate pairs. I don't use surrogates. I only use UTF-8 and UTF-32. But using cygwin's wcwidth may be worth thinking about. I suppose it will be consistent with mintty that way; otherwise not? Using wcswidth isn't very useful in the editor because it has special requirements, like showing control characters with ^C. That's one of the reasons I mostly wrote my own, all the special requirements. I always iterate of bytes, which are converted in a mode-dependent way to ints (UTF-32). Do you have a case-insensitive compare? Because I limited that to ASCII. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple