would have to know whether an Accept block is being used that generates
a YYMARKER reference. In two pass mode we know this after the first run.
Version 0.10.2 (2006-??-??)
---------------------------
+- Changed to generate YYMARKER only when needed or in single pass mode.
- Added -t switch to force two pass generation.
-- Changed to not generate YYMARKER unless needed.
- Fixed -i switch.
- Added configuration 'yyfill:enable' to allow suppression of YYFILL() blocks.
- Added tutorial like lessons to re2c.
<h1>Changelog</h1>
<h2>2006-??-??: 0.10.2</h2>
<ul>
+<li>Changed to generate YYMARKER only when needed or in single pass mode.</li>
<li>Added -t switch to force two pass generation.</li>
-<li>Changed to not generate YYMARKER unless needed.</li>
<li>Fixed -i switch.</li>
<li>Added configuration 'yyfill:enable' to allow suppression of YYFILL() blocks.</li>
<li>Added tutorial like lessons to re2c.</li>
bool bUsedYYAccept = false;
bool bUsedYYMaxFill = false;
-bool bUsedYYMarker = false;
+bool bUsedYYMarker = true;
bool bUseStartLabel= false;
bool bUseStateNext = false;
if (tFlag)
{
+ bUsedYYMarker = false;
+
re2c::ifstream_lc null_source;
if (!null_source.open(sourceFileName).is_open())