diff options
author | Bruce Momjian | 2005-10-27 13:34:47 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-10-27 13:34:47 +0000 |
commit | 3332e38189b27b64428db4f0bcd5459800de1cfc (patch) | |
tree | 79dce25e92a44802c7709ed2af3e898c9fd28af4 /src/bin/psql/print.h | |
parent | 69f16b562a9088d708a588333afcf16e84317a4e (diff) |
Disable expanded mode only for \d tablename, not for all backslash
commands. Per complaint that \df+ is clearer in expanded mode.
Diffstat (limited to 'src/bin/psql/print.h')
-rw-r--r-- | src/bin/psql/print.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h index 5b07bfd4756..298763533ea 100644 --- a/src/bin/psql/print.h +++ b/src/bin/psql/print.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.29 2005/10/15 02:49:40 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.30 2005/10/27 13:34:47 momjian Exp $ */ #ifndef PRINT_H #define PRINT_H @@ -43,8 +43,6 @@ typedef struct _printTableOpt * decimal marker */ char *tableAttr; /* attributes for HTML <table ...> */ int encoding; /* character encoding */ - bool normal_query; /* are we presenting the results of a "normal" - * query, or a slash command? */ } printTableOpt; |