summaryrefslogtreecommitdiff
path: root/src/bin/psql/describe.c
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2013-08-27 13:33:37 -0400
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2013-08-27 13:33:37 -0400
commit673b527534893a4a8adb3cdef52fc645c13598ce (patch)
tree3598ee4d4daae0c5d9e45506704acea1731208ca /src/bin/psql/describe.c
parent8d00ab630668a15e86b584b39187ef3bf3154511 (diff)
Fix some "translator:" comments mangled by pgindent
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r--src/bin/psql/describe.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index 9b6b9c2cd0a..dad1d5ac0de 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -2372,10 +2372,9 @@ add_tablespace_footer(printTableContent *const cont, char relkind,
/* Append the tablespace to the latest footer */
printfPQExpBuffer(&buf, "%s", cont->footer->data);
- /*
- * translator: before this string there's an index
- * description like '"foo_pkey" PRIMARY KEY, btree (a)'
- */
+ /*-------
+ translator: before this string there's an index description like
+ '"foo_pkey" PRIMARY KEY, btree (a)' */
appendPQExpBuffer(&buf, _(", tablespace \"%s\""),
PQgetvalue(result, 0, 0));
printTableSetFooter(cont, buf.data);