From: Peter Eisentraut Date: Mon, 29 Sep 2003 16:39:18 +0000 (+0000) Subject: Apparently, gettext doesn't like double parentheses around argument. What X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=c02ddfa1c961c07e26473ddfe35b695bd67ca277;p=users%2Fbernd%2Fpostgres.git Apparently, gettext doesn't like double parentheses around argument. What were they doing here anyway? --- diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 311aaa0301..85e1627329 100644 --- 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.")); } }