diff options
author | Michael Meskes | 2009-09-15 08:44:57 +0000 |
---|---|---|
committer | Michael Meskes | 2009-09-15 08:44:57 +0000 |
commit | 782fc2875252d76db634ddff00ef41a43b0b71ff (patch) | |
tree | f78778e8e943ed341d06dfde0c85d16b9f78a859 | |
parent | da2fa6f8828fffe01c9a435e1d6cbeb02a76861e (diff) |
Applied patch by Boszormenyi Zoltan <[email protected]> to add missing ";" to rule in pgc.l.
-rw-r--r-- | src/interfaces/ecpg/ChangeLog | 5 | ||||
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/ChangeLog b/src/interfaces/ecpg/ChangeLog index 6593b6d552..e45e2ca818 100644 --- a/src/interfaces/ecpg/ChangeLog +++ b/src/interfaces/ecpg/ChangeLog @@ -2428,6 +2428,11 @@ Fri, 14 Aug 2009 14:45:02 +0200 Thu, 03 Sep 2009 11:45:13 +0200 - Removed some no longer used variables as reported by clang. + +Tue, 15 Sep 2009 10:17:52 +0200 + + - Applied patch by Boszormenyi Zoltan <[email protected]> to add missing + ";" to rule in pgc.l. - Set ecpg library version to 6.2. - Set compat library version to 3.2. - Set ecpg version to 4.6. diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index 34126ad1c2..9d0b8fb48a 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -987,7 +987,7 @@ cppline {space}*#(.*\\{space})*.*{newline} BEGIN(xskip); } } -<C,xskip>{informix_special}{else}{space}* { +<C,xskip>{informix_special}{else}{space}*";" { /* are we simulating Informix? */ if (INFORMIX_MODE) { |