projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5efda4
)
No period if it's not a sentence
author
Peter Eisentraut
<peter_e@gmx.net>
Wed, 25 Mar 2009 13:07:26 +0000
(13:07 +0000)
committer
Peter Eisentraut
<peter_e@gmx.net>
Wed, 25 Mar 2009 13:07:26 +0000
(13:07 +0000)
src/bin/psql/command.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/command.c
b/src/bin/psql/command.c
index 24c5b4d53ce14f1ed10e8875613d9600d8b9813c..b92f68848b0ffa715efba0ca097d48ff29567706 100644
(file)
--- 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.20
3 2009/02/26 16:02:38
petere Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.20
4 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;
}