[Boost-bugs] [Boost C++ Libraries] #1576: cannot read non-ASCII output messages

Subject: [Boost-bugs] [Boost C++ Libraries] #1576: cannot read non-ASCII output messages
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2008-01-17 14:58:57


#1576: cannot read non-ASCII output messages
---------------------------------------------------------------+------------
 Reporter: Takeshi Mouri <takeshi.mouri.net_at_[hidden]> | Owner: grafik
     Type: Bugs | Status: new
Milestone: Boost 1.36.0 | Component: bjam
  Version: Boost Development Trunk | Severity: Problem
 Keywords: |
---------------------------------------------------------------+------------
 The changes in exent.c at changeset:38009 break non-ASCII output messages.
 Some Japanese compilers output diagnostic messages in Japanese (non-
 ASCII), but we cannot read them.
 This problem is caused by the following codes:
 {{{
                     /* clean up non-ascii chars */
                     int i;
                     for ( i = 0; i < bytesInBuffer; ++i )
                     {
                         if ((unsigned char)ioBuffer[i] < 1 ||
                             (unsigned char)ioBuffer[i] > 127 )
                         {
                             ioBuffer[i] = '?';
                         }
                     }
 }}}
 Could you remove it?

--
Ticket URL: <http://svn.boost.org/trac/boost/ticket/1576>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.


This archive was generated by hypermail 2.1.7 : 2017-02-16 18:49:57 UTC