Version 0.13.6 (2008-??-??)
---------------------------
- Fixed #2088583 Compile problemon AIX.
+- Fixed #2038610 ebcdic problem.
Version 0.13.5 (2008-05-25)
---------------------------
void prtChOrHex(std::ostream& o, uint c, bool useTalx)
{
- int oc = (int)(re2c::wFlag || !useTalx ? c : re2c::talx[c]);
+ int oc = (int)((re2c::wFlag && !re2c::eFlag) || !useTalx ? c : re2c::talx[c]);
if ((oc < 256) && (isprint(oc) || isspace(oc)))
{
void prtHex(std::ostream& o, uint c, bool useTalx)
{
- int oc = (int)(re2c::wFlag || !useTalx ? c : re2c::talx[c]);
+ int oc = (int)((re2c::wFlag && !re2c::eFlag) || !useTalx ? c : re2c::talx[c]);
if (re2c::uFlag)
{
void prtCh(std::ostream& o, uint c, bool useTalx)
{
- int oc = (int)(re2c::wFlag || !useTalx ? c : re2c::talx[c]);
+ int oc = (int)((re2c::wFlag && !re2c::eFlag) || !useTalx ? c : re2c::talx[c]);
switch (oc)
{
<h2>2008-??-??: 0.13.6</h2>
<ul>
<li>Fixed #2088583 Compile problemon AIX.</li>
+<li>Fixed #2038610 ebcdic problem.</li>
</ul>
<h2>2008-05-25: 0.13.5</h2>
<ul>