Fix misindentations in the flex skeleton triggered by dtrace's dt_lex.l.

Upstream committed as a631f5da8d4fd60fbde7b06bcf43bc9a155c27d5
This commit is contained in:
joerg 2020-04-25 18:56:26 +00:00
parent 3b58d8437a
commit db8d9d67e0
1 changed files with 6 additions and 6 deletions

View File

@ -1216,11 +1216,11 @@ m4_ifdef( [[<M4_YY_BISON_LLOC>]],
m4_ifdef( [[M4_YY_USES_REJECT]],
[[
/* Create the reject buffer large enough to save one state per allowed character. */
if ( ! YY_G(yy_state_buf) )
YY_G(yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE M4_YY_CALL_LAST_ARG);
if ( ! YY_G(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 ( ! YY_G(yy_state_buf) )
YY_G(yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE M4_YY_CALL_LAST_ARG);
if ( ! YY_G(yy_state_buf) )
YY_FATAL_ERROR( "out of dynamic memory in yylex()" );
]])
if ( ! YY_G(yy_start) )
@ -1749,7 +1749,7 @@ m4_ifdef( [[M4_YY_USES_REJECT]],
%% [17.0] code to find the next state, and perhaps do backing up, goes here
M4_YY_NOOP_GUTS_VAR();
return yy_is_jam ? 0 : yy_current_state;
return yy_is_jam ? 0 : yy_current_state;
}