X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org MIME-Version: 1.0 In-Reply-To: References: From: "Eduardo D'Avila" Date: Mon, 4 Jan 2010 21:24:44 -0200 Message-ID: Subject: Re: Bug printing string where the 128th char is multibyte To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: 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 The script I use displays string from an IMAP server. The best solution would be splitting every string in pieces of at most 127 chars. This is a workaround, but the bug is still there and can show up on other applications. I confirmed the bug on two different versions of Windows XP (Home and Professional Editions) at my home and my workplace. I've just checked also on a Windows Vista notebook and the bug didn't happen. I never developed for Cygwin, but I'm willing to see if I can do and debug this. Unless someone confirms that this is not a Cygwin-related bug... Eduardo R. D'Avila 2010/1/4 Mark J. Reed : > On Mon, Jan 4, 2010 at 5:35 PM, Eric Blake wrote: >> What you've found is a bug in your own program, at lesat for the BUG.c v= ersion >> of your report. > > The Perl and Python programs are not buggy, but they also don't > exhibit the behavior for me. =A0Although I'm still running a prerelease > 1.7.0 > > Both also feature simpler ways to build the string, btw. > > Perl: > =A0 =A0my $str =3D '0123456789' x 13; > =A0 =A0substr($str,127,1) =3D '=E7'; > > Python: > =A0 =A0str =3D '0123456789' * 13 > =A0 =A0str =3D str[:128] + '=E7' + str[128:] > > > > > -- > Mark J. Reed > > -- > Problem reports: =A0 =A0 =A0 http://cygwin.com/problems.html > FAQ: =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 http://cygwin.com/faq/ > Documentation: =A0 =A0 =A0 =A0 http://cygwin.com/docs.html > Unsubscribe info: =A0 =A0 =A0http://cygwin.com/ml/#unsubscribe-simple -- 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