diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-03-25 13:07:26 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-03-25 13:07:26 +0000 |
commit | ac79586bb27d3e76fd87c4a03e825e64a73319a2 (patch) | |
tree | dd6708d4345796d6606b661a7c733e6193e8aaf6 | |
parent | e5efda442cfcfa20a0cf6166952c671a0f39689b (diff) | |
download | postgresql-ac79586bb27d3e76fd87c4a03e825e64a73319a2.tar.gz postgresql-ac79586bb27d3e76fd87c4a03e825e64a73319a2.zip |
No period if it's not a sentence
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 24c5b4d53ce..b92f68848b0 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.203 2009/02/26 16:02:38 petere Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.204 2009/03/25 13:07:26 petere Exp $ */ #include "postgres_fe.h" #include "command.h" @@ -521,7 +521,7 @@ exec_command(const char *cmd, if (!do_edit(0, query_buf, &edited)) status = PSQL_CMD_ERROR; else if (!edited) - puts(_("No changes.")); + puts(_("No changes")); else status = PSQL_CMD_NEWEDIT; } |