Commit f3ef9485 authored by Michael Meskes's avatar Michael Meskes

Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add missing ";" to rule in pgc.l.

parent 9a3f5301
......@@ -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 <zb@cybertec.at> 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.
......@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.169 2009/01/23 12:43:32 petere Exp $
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.170 2009/09/15 08:44:57 meskes Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment