Converted to single-line parser specifications where appropriate.
[external/ragel.git] / ragel / rlscan.rl
index 73dc0f5..e8154a1 100644 (file)
@@ -766,9 +766,6 @@ void Scanner::endSection( )
                "|*" => { token( TK_BarStar ); };
 
                '}%%' => { 
-                       /* In order to generate anything we must be in the top level file
-                        * and the current spec must be active and there must not have been
-                        * any parse errors. */
                        updateCol();
                        endSection();
                        fgoto main;
@@ -780,9 +777,6 @@ void Scanner::endSection( )
                NL => {
                        updateCol();
                        if ( singleLineSpec ) {
-                               /* In order to generate anything we must be in the top level file
-                                * and the current spec must be active and there must not have been
-                                * any parse errors. */
                                endSection();
                                fgoto main;
                        }