Commit a6d3b5b9 authored by Neil Conway's avatar Neil Conway

Mark unescape_single_char() "static": as far as I can see this function

is only used by scan.l/scan.c
parent ea9eca2c
...@@ -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.128 2005/08/16 00:48:12 tgl Exp $ * $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.129 2006/02/18 01:44:35 neilc Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -93,7 +93,7 @@ static char *token_start; ...@@ -93,7 +93,7 @@ static char *token_start;
static YY_BUFFER_STATE scanbufhandle; static YY_BUFFER_STATE scanbufhandle;
static char *scanbuf; static char *scanbuf;
unsigned char unescape_single_char(unsigned char c); static unsigned char unescape_single_char(unsigned char c);
%} %}
...@@ -855,7 +855,7 @@ litbufdup(void) ...@@ -855,7 +855,7 @@ litbufdup(void)
} }
unsigned char static unsigned char
unescape_single_char(unsigned char c) unescape_single_char(unsigned char c)
{ {
switch (c) switch (c)
......
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