projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ba29a7
)
Apparently, gettext doesn't like double parentheses around argument. What
author
Peter Eisentraut
<peter_e@gmx.net>
Mon, 29 Sep 2003 16:39:18 +0000
(16:39 +0000)
committer
Peter Eisentraut
<peter_e@gmx.net>
Mon, 29 Sep 2003 16:39:18 +0000
(16:39 +0000)
were they doing here anyway?
src/bin/psql/command.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/command.c
b/src/bin/psql/command.c
index 311aaa0301d4f5e7d8ed755107ab9da6d648f1f8..85e1627329d2b1a89caf504e5266b72d4b5bac1f 100644
(file)
--- a/
src/bin/psql/command.c
+++ b/
src/bin/psql/command.c
@@
-733,12
+733,9
@@
exec_command(const char *cmd,
if (!quiet)
{
if (pset.timing)
- puts(gettext(
("Timing is on.")
));
+ puts(gettext(
"Timing is on."
));
else
- {
- puts(gettext(("Timing is off.")));
-
- }
+ puts(gettext("Timing is off."));
}
}