summaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorBruce Momjian1997-11-03 04:21:49 +0000
committerBruce Momjian1997-11-03 04:21:49 +0000
commit475a8873b0506fede412103786227a961daeafe8 (patch)
tree5b36e826138a860a98ef38d2a90558cc617cb0e8 /src/interfaces
parent89ad3270993087b162031af34d67a29686a9bf01 (diff)
Add paging for \d, and fix \i.
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/libpq/fe-exec.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c
index 332b9f6b777..483644e7457 100644
--- a/src/interfaces/libpq/fe-exec.c
+++ b/src/interfaces/libpq/fe-exec.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.38 1997/09/08 21:55:41 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.39 1997/11/03 04:21:49 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -31,14 +31,12 @@
#ifdef TIOCGWINSZ
struct winsize screen_size;
-
#else
struct winsize
{
int ws_row;
int ws_col;
} screen_size;
-
#endif
/* the rows array in a PGresGroup has to grow to accommodate the rows */