Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed a few outdated comments.
  • Loading branch information
icculus committed Sep 27, 2015
1 parent 24884bb commit 95707b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mojoshader_lexer.c
Expand Up @@ -11,8 +11,8 @@
// This was originally based on examples/pp-c.re from re2c: http://re2c.org/
// re2c is public domain code.
//
// You build mojoshader_lexer_preprocessor.c from the .re file with re2c...
// re2c -is -o mojoshader_lexer_preprocessor.c mojoshader_lexer_preprocessor.re
// You build mojoshader_lexer.c from the .re file with re2c...
// re2c -is -o mojoshader_lexer.c mojoshader_lexer.re
//
// Changes to the lexer are done to the .re file, not the C code!
//
Expand Down Expand Up @@ -1527,5 +1527,5 @@ Token preprocessor_lexer(IncludeState *s)
RET(TOKEN_UNKNOWN);
} // preprocessor_lexer

// end of mojoshader_lexer_preprocessor.re (or .c) ...
// end of mojoshader_lexer.re (or .c) ...

6 changes: 3 additions & 3 deletions mojoshader_lexer.re
Expand Up @@ -10,8 +10,8 @@
// This was originally based on examples/pp-c.re from re2c: http://re2c.org/
// re2c is public domain code.
//
// You build mojoshader_lexer_preprocessor.c from the .re file with re2c...
// re2c -is -o mojoshader_lexer_preprocessor.c mojoshader_lexer_preprocessor.re
// You build mojoshader_lexer.c from the .re file with re2c...
// re2c -is -o mojoshader_lexer.c mojoshader_lexer.re
//
// Changes to the lexer are done to the .re file, not the C code!
//
Expand Down Expand Up @@ -272,5 +272,5 @@ bad_chars:
RET(TOKEN_UNKNOWN);
} // preprocessor_lexer

// end of mojoshader_lexer_preprocessor.re (or .c) ...
// end of mojoshader_lexer.re (or .c) ...

0 comments on commit 95707b0

Please sign in to comment.