Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f3ef948

Browse files
author
Michael Meskes
committed
Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add missing ";" to rule in pgc.l.
1 parent 9a3f530 commit f3ef948

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/interfaces/ecpg/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -2428,6 +2428,11 @@ Fri, 14 Aug 2009 14:45:02 +0200
24282428
Thu, 03 Sep 2009 11:45:13 +0200
24292429

24302430
- Removed some no longer used variables as reported by clang.
2431+
2432+
Tue, 15 Sep 2009 10:17:52 +0200
2433+
2434+
- Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add missing
2435+
";" to rule in pgc.l.
24312436
- Set ecpg library version to 6.2.
24322437
- Set compat library version to 3.2.
24332438
- Set ecpg version to 4.6.

src/interfaces/ecpg/preproc/pgc.l

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*
1313
*
1414
* IDENTIFICATION
15-
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.169 2009/01/23 12:43:32 petere Exp $
15+
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.170 2009/09/15 08:44:57 meskes Exp $
1616
*
1717
*-------------------------------------------------------------------------
1818
*/
@@ -987,7 +987,7 @@ cppline {space}*#(.*\\{space})*.*{newline}
987987
BEGIN(xskip);
988988
}
989989
}
990-
<C,xskip>{informix_special}{else}{space}* {
990+
<C,xskip>{informix_special}{else}{space}*";" {
991991
/* are we simulating Informix? */
992992
if (INFORMIX_MODE)
993993
{

0 commit comments

Comments
 (0)