mirror of
https://github.com/postgres/postgres.git
synced 2025-04-29 13:56:47 +03:00
No period if it's not a sentence
This commit is contained in:
parent
e5efda442c
commit
ac79586bb2
@ -3,7 +3,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
|
* 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 "postgres_fe.h"
|
||||||
#include "command.h"
|
#include "command.h"
|
||||||
@ -521,7 +521,7 @@ exec_command(const char *cmd,
|
|||||||
if (!do_edit(0, query_buf, &edited))
|
if (!do_edit(0, query_buf, &edited))
|
||||||
status = PSQL_CMD_ERROR;
|
status = PSQL_CMD_ERROR;
|
||||||
else if (!edited)
|
else if (!edited)
|
||||||
puts(_("No changes."));
|
puts(_("No changes"));
|
||||||
else
|
else
|
||||||
status = PSQL_CMD_NEWEDIT;
|
status = PSQL_CMD_NEWEDIT;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user