diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-12-22 07:37:48 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-12-22 07:37:48 -0800 |
commit | b9d24b707e78fec4a5449cb6f543ac26cb35a30d (patch) | |
tree | 4cb7721e957e3084801a3b8fcdc4228beccece16 /lex.yy.c.shipped | |
parent | 16017b64feb3a191d42c936e1bd0d483cdaf4f60 (diff) | |
download | txr-b9d24b707e78fec4a5449cb6f543ac26cb35a30d.tar.gz txr-b9d24b707e78fec4a5449cb6f543ac26cb35a30d.tar.bz2 txr-b9d24b707e78fec4a5449cb6f543ac26cb35a30d.zip |
shipped lexer: fix misleading indentation.
* lex.yy.c.shippped (YY_DECL): Fix some bad indentation, most
likely caused by using a mixture of tabs and spaces.
Diffstat (limited to 'lex.yy.c.shipped')
-rw-r--r-- | lex.yy.c.shipped | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lex.yy.c.shipped b/lex.yy.c.shipped index d2b24a1c..f684c84c 100644 --- a/lex.yy.c.shipped +++ b/lex.yy.c.shipped @@ -3981,11 +3981,11 @@ YY_DECL YY_USER_INIT; #endif - /* Create the reject buffer large enough to save one state per allowed character. */ - if ( ! yyg->yy_state_buf ) - yyg->yy_state_buf = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE , yyscanner); - if ( ! yyg->yy_state_buf ) - YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); + /* Create the reject buffer large enough to save one state per allowed character. */ + if ( ! yyg->yy_state_buf ) + yyg->yy_state_buf = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE , yyscanner); + if ( ! yyg->yy_state_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); if ( ! yyg->yy_start ) yyg->yy_start = 1; /* first start state */ |