Version 0.13.0 (2007-??-??)
---------------------------
-- Add -c and -t to generate scanners with (f)lex-like condition support.
-- Fix issue with short form of switches and parameter if not first switch.
+- Added -c and -t to generate scanners with (f)lex-like condition support.
+- Fixed issue with short form of switches and parameter if not first switch.
+- Fixed #1708378 segfault in actions.cc.
Version 0.12.0 (2007-??-??)
---------------------------
-- Fix issue with short form of switches and parameter if not first switch.
- Re-release of 0.11.3 as new stable branch.
+- Fixed isse with short form of switches and parameter if not first switch.
+- Fixed #1708378 segfault in actions.cc.
Version 0.11.3 (2007-04-01)
---------------------------
<h1>Changelog</h1>
<h2>2007-??-??: 0.13.0</h2>
<ul>
-<li>Add -c and -t to generate scanners with (f)lex-like condition support.</li>
-<li>Fix issue with short form of switches and parameter if not first switch.</li>
+<li>Added -c and -t to generate scanners with (f)lex-like condition support.</li>
+<li>Fixed issue with short form of switches and parameter if not first switch.</li>
+<li>Fixed #1708378 segfault in actions.cc.</li>
</ul>
<h2>2007-??-??: 0.12.0</h2>
<ul>
-<li>Fix issue with short form of switches and parameter if not first switch.</li>
<li>Re-release of 0.11.3 as new stable branch.</li>
+<li>Fixed issue with short form of switches and parameter if not first switch.</li>
+<li>Fixed #1708378 segfault in actions.cc.</li>
</ul>
<h2>2007-04-01: 0.11.3</h2>
<ul>
inline uint Scanner::xlat(uint c) const
{
- return re2c::wFlag ? c : re2c::xlat[c];
+ return re2c::wFlag ? c : re2c::xlat[c & 0xFF];
}
} // end namespace re2c