|
1 | 1 | /*
|
2 | 2 | * psql - the PostgreSQL interactive terminal
|
3 | 3 | *
|
4 |
| - * Copyright 2000 by PostgreSQL Global Development Group |
| 4 | + * Copyright 2000-2003 by PostgreSQL Global Development Group |
5 | 5 | *
|
6 |
| - * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.74 2003/07/23 08:47:39 petere Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.75 2003/07/25 21:48:45 momjian Exp $ |
7 | 7 | */
|
8 | 8 | #include "postgres_fe.h"
|
9 | 9 | #include "common.h"
|
@@ -163,7 +163,7 @@ slashUsage(unsigned short int pager)
|
163 | 163 | {
|
164 | 164 | FILE *output;
|
165 | 165 |
|
166 |
| - output = PageOutput(50, pager); |
| 166 | + output = PageOutput(64, pager); |
167 | 167 |
|
168 | 168 | /* if you add/remove a line here, change the row count above */
|
169 | 169 |
|
@@ -276,7 +276,7 @@ helpSQL(const char *topic, unsigned short int pager)
|
276 | 276 | int items_per_column = (QL_HELP_COUNT + 2) / 3;
|
277 | 277 | FILE *output;
|
278 | 278 |
|
279 |
| - output = PageOutput(items_per_column, pager); |
| 279 | + output = PageOutput(items_per_column + 1, pager); |
280 | 280 |
|
281 | 281 | fputs(_("Available help:\n"), output);
|
282 | 282 |
|
@@ -338,10 +338,10 @@ print_copyright(void)
|
338 | 338 | {
|
339 | 339 | puts(
|
340 | 340 | "PostgreSQL Data Base Management System\n\n"
|
341 |
| - "Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group\n\n" |
| 341 | + "Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group\n\n" |
342 | 342 | "This software is based on Postgres95, formerly known as Postgres, which\n"
|
343 | 343 | "contains the following notice:\n\n"
|
344 |
| - "Portions Copyright(c) 1994 - 7 Regents of the University of California\n\n" |
| 344 | + "Portions Copyright(c) 1994, Regents of the University of California\n\n" |
345 | 345 | "Permission to use, copy, modify, and distribute this software and its\n"
|
346 | 346 | "documentation for any purpose, without fee, and without a written agreement\n"
|
347 | 347 | "is hereby granted, provided that the above copyright notice and this paragraph\n"
|
|
0 commit comments