Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated re2c-generated code again.
  • Loading branch information
icculus committed Feb 13, 2009
1 parent 1737a3c commit a797e8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mojoshader_lexer.c
@@ -1,4 +1,4 @@
/* Generated by re2c 0.12.1 on Fri Feb 13 00:36:29 2009 */
/* Generated by re2c 0.12.1 on Fri Feb 13 01:08:10 2009 */
/**
* MojoShader; generate shader programs from bytecode of compiled
* Direct3D shaders.
Expand Down Expand Up @@ -1242,7 +1242,7 @@ Token preprocessor_internal_lexer(IncludeState *s)

multilinecomment:
if (YYLIMIT == YYCURSOR)
RET(TOKEN_PP_INCOMPLETE_COMMENT);
RET(TOKEN_INCOMPLETE_COMMENT);
matchptr = cursor;
// The "*\/" is just to avoid screwing up text editor syntax highlighting.

Expand Down Expand Up @@ -1322,7 +1322,7 @@ Token preprocessor_internal_lexer(IncludeState *s)

bad_chars:
if (YYLIMIT == YYCURSOR)
RET(TOKEN_PP_BAD_CHARS);
RET(TOKEN_BAD_CHARS);


{
Expand All @@ -1346,7 +1346,7 @@ Token preprocessor_internal_lexer(IncludeState *s)
}
}
++YYCURSOR;
{ cursor--; RET(TOKEN_PP_BAD_CHARS); }
{ cursor--; RET(TOKEN_BAD_CHARS); }
yy255:
++YYCURSOR;
{ goto bad_chars; }
Expand Down

0 comments on commit a797e8d

Please sign in to comment.