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

Commit be18a49

Browse files
committed
> NOTE: in the command.c in three places there (I believe) is a typo:
> > "parse error at [the] end of line" > > Attached patch also fixes it. I noticed this while editing the po file. > If I'm wrong, please ignore the command.c.patch. I will revert my translation > as well then. > > -- > Serguei A. Mokhov
1 parent 9e46767 commit be18a49

File tree

2 files changed

+98
-103
lines changed

2 files changed

+98
-103
lines changed

src/bin/psql/command.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.57 2001/09/02 23:52:19 petere Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.58 2001/09/10 14:51:33 momjian Exp $
77
*/
88
#include "postgres_fe.h"
99
#include "command.h"
@@ -889,7 +889,7 @@ scan_option(char **string, enum option_type type, char *quote)
889889

890890
if (options_string[jj] == 0)
891891
{
892-
psql_error("parse error at end of line\n");
892+
psql_error("parse error at the end of line\n");
893893
*string = &options_string[jj];
894894
return NULL;
895895
}
@@ -963,7 +963,7 @@ scan_option(char **string, enum option_type type, char *quote)
963963

964964
if (options_string[jj] == 0)
965965
{
966-
psql_error("parse error at end of line\n");
966+
psql_error("parse error at the end of line\n");
967967
*string = &options_string[jj];
968968
return NULL;
969969
}
@@ -991,7 +991,7 @@ scan_option(char **string, enum option_type type, char *quote)
991991
len = strcspn(options_string + pos + 1, "`");
992992
if (options_string[pos + 1 + len] == 0)
993993
{
994-
psql_error("parse error at end of line\n");
994+
psql_error("parse error at the end of line\n");
995995
*string = &options_string[pos + 1 + len];
996996
return NULL;
997997
}

0 commit comments

Comments
 (0)