From: Michael Meskes Date: Mon, 19 May 2003 07:19:57 +0000 (+0000) Subject: Fixed exec sql ifdef command. X-Git-Tag: REL7_4_BETA1~573 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08d7e1c20edebf1ff02aad20430a43fcea3422e0;p=thirdparty%2Fpostgresql.git Fixed exec sql ifdef command. --- diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index ab25f481ca5..b06ede0fce6 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -12,7 +12,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.107 2003/05/01 17:16:57 meskes Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.108 2003/05/19 07:19:57 meskes Exp $ * *------------------------------------------------------------------------- */ @@ -905,7 +905,7 @@ cppline {space}*#(.*\\{space})+.* {other} { /* ignore */ } -{identifier}{space}*";" { +{identifier}{space}* { if ( preproc_tos >= MAX_NESTED_IF-1 ) { mmerror(PARSE_ERROR, ET_FATAL, "Too many nested 'EXEC SQL IFDEF' conditions"); }