diff options
Diffstat (limited to 'src/interfaces/ecpg/preproc/pgc.l')
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index aa7b1852652..0ae21909785 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -487,7 +487,7 @@ cppline {space}*#.*(\\{space}*\n)*\n* } <SQL>{space} { /* ignore */ } <SQL>{other} { return yytext[0]; } -<C>{exec}{space}{sql} { BEGIN SQL; return SQL_START; } +<C>{exec}{space}*{sql} { BEGIN SQL; return SQL_START; } <C>{ccomment} { /* ignore */ } <C>{cppline} { yylval.str = mm_strdup((char*)yytext); |