Commit d35c56ed authored by Peter Eisentraut's avatar Peter Eisentraut

Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3

began to realize that the input() function isn't used and printed warnings.
parent 6e3e6009
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/bootstrap/bootscanner.l,v 1.45 2008/01/01 19:45:48 momjian Exp $ * $PostgreSQL: pgsql/src/backend/bootstrap/bootscanner.l,v 1.46 2008/05/09 15:36:31 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -52,6 +52,7 @@ static int yyline = 1; /* line number for error reporting */ ...@@ -52,6 +52,7 @@ static int yyline = 1; /* line number for error reporting */
%option 8bit %option 8bit
%option never-interactive %option never-interactive
%option nodefault %option nodefault
%option noinput
%option nounput %option nounput
%option noyywrap %option noyywrap
%option prefix="boot_yy" %option prefix="boot_yy"
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.143 2008/04/04 12:44:36 mha Exp $ * $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.144 2008/05/09 15:36:31 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -101,6 +101,7 @@ static unsigned char unescape_single_char(unsigned char c); ...@@ -101,6 +101,7 @@ static unsigned char unescape_single_char(unsigned char c);
%option 8bit %option 8bit
%option never-interactive %option never-interactive
%option nodefault %option nodefault
%option noinput
%option nounput %option nounput
%option noyywrap %option noyywrap
%option prefix="base_yy" %option prefix="base_yy"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* *
* Copyright (c) 2000-2008, PostgreSQL Global Development Group * Copyright (c) 2000-2008, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.54 2008/05/04 21:13:35 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.55 2008/05/09 15:36:31 petere Exp $
*/ */
%{ %{
...@@ -59,6 +59,7 @@ static char *GUC_scanstr(const char *s); ...@@ -59,6 +59,7 @@ static char *GUC_scanstr(const char *s);
%option 8bit %option 8bit
%option never-interactive %option never-interactive
%option nodefault %option nodefault
%option noinput
%option nounput %option nounput
%option noyywrap %option noyywrap
%option prefix="GUC_yy" %option prefix="GUC_yy"
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.24 2008/05/02 09:27:51 petere Exp $ * $PostgreSQL: pgsql/src/bin/psql/psqlscan.l,v 1.25 2008/05/09 15:36:31 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -125,6 +125,7 @@ static void emit(const char *txt, int len); ...@@ -125,6 +125,7 @@ static void emit(const char *txt, int len);
%option 8bit %option 8bit
%option never-interactive %option never-interactive
%option nodefault %option nodefault
%option noinput
%option nounput %option nounput
%option noyywrap %option noyywrap
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.163 2008/02/17 18:14:29 meskes Exp $ * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.164 2008/05/09 15:36:31 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -76,6 +76,7 @@ static struct _if_value ...@@ -76,6 +76,7 @@ static struct _if_value
%option 8bit %option 8bit
%option never-interactive %option never-interactive
%option nodefault %option nodefault
%option noinput
%option noyywrap %option noyywrap
%option yylineno %option yylineno
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.61 2008/04/01 03:51:09 tgl Exp $ * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.62 2008/05/09 15:36:31 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -47,6 +47,7 @@ bool plpgsql_SpaceScanned = false; ...@@ -47,6 +47,7 @@ bool plpgsql_SpaceScanned = false;
%option 8bit %option 8bit
%option never-interactive %option never-interactive
%option nodefault %option nodefault
%option noinput
%option nounput %option nounput
%option noyywrap %option noyywrap
%option prefix="plpgsql_base_yy" %option prefix="plpgsql_base_yy"
......
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