summaryrefslogtreecommitdiff
path: root/src/bin/psql/print.h
diff options
context:
space:
mode:
authorBruce Momjian2008-07-14 22:00:04 +0000
committerBruce Momjian2008-07-14 22:00:04 +0000
commitc9b2591efcf96ac8e4764a3d32ad4315b2c71312 (patch)
tree335ea4bdd8e2e015a61f5015f822c094b53a98e8 /src/bin/psql/print.h
parentb1845753d2c92811d48e47eb563dbe88539688df (diff)
In psql, rename trans_* variables to translate_*, for clarity.
Diffstat (limited to 'src/bin/psql/print.h')
-rw-r--r--src/bin/psql/print.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h
index f11bc206c54..31da75358ec 100644
--- a/src/bin/psql/print.h
+++ b/src/bin/psql/print.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.37 2008/05/12 22:59:58 alvherre Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.38 2008/07/14 22:00:04 momjian Exp $
*/
#ifndef PRINT_H
#define PRINT_H
@@ -90,8 +90,8 @@ typedef struct printQueryOpt
char *title; /* override title */
char **footers; /* override footer (default is "(xx rows)") */
bool default_footer; /* print default footer if footers==NULL */
- bool trans_headers; /* do gettext on column headers */
- const bool *trans_columns; /* trans_columns[i-1] => do gettext on col i */
+ bool translate_header; /* do gettext on column headers */
+ const bool *translate_columns; /* translate_columns[i-1] => do gettext on col i */
} printQueryOpt;