diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-03-18 05:44:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-03-18 05:44:21 +0000 |
commit | 2b23e864470fcd7ea29de7d96ff77ab969cf5b1c (patch) | |
tree | 9134d096695227f68b4527176888cd683d269514 /src | |
parent | 15115344f02576d9671177f8f68bba53c9afa929 (diff) | |
download | postgresql-2b23e864470fcd7ea29de7d96ff77ab969cf5b1c.tar.gz postgresql-2b23e864470fcd7ea29de7d96ff77ab969cf5b1c.zip |
Repair typos: <xb> EOF rule should be <xh>, likewise <xq> to <xd>
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index 87ca300b134..bcc8e6430e2 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.54 2000/03/15 19:09:10 meskes Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.55 2000/03/18 05:44:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -319,7 +319,7 @@ cppline {space}*#(.*\\{line_end})*.* return ICONST; } -<xb><<EOF>> { mmerror(ET_ERROR, "Unterminated hexadecimal integer"); } +<xh><<EOF>> { mmerror(ET_ERROR, "Unterminated hexadecimal integer"); } {xqstart} { state_before = YYSTATE; @@ -355,7 +355,7 @@ cppline {space}*#(.*\\{line_end})*.* <xd>{xdinside} { addlit(yytext, yyleng); } -<xq><<EOF>> { mmerror(ET_ERROR, "Unterminated quoted identifier"); } +<xd><<EOF>> { mmerror(ET_ERROR, "Unterminated quoted identifier"); } <SQL>{typecast} { return TYPECAST; } <SQL>{self} { /* * We may find a ';' inside a structure |