mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Fix \? and \pset pager handling. \? wasn't honoring pager before.
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright 2000 by PostgreSQL Global Development Group
|
||||
*
|
||||
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.72 2002/04/24 05:24:00 petere Exp $
|
||||
* $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.73 2002/07/15 01:56:25 momjian Exp $
|
||||
*/
|
||||
#include "postgres_fe.h"
|
||||
#include "command.h"
|
||||
@ -846,7 +846,7 @@ exec_command(const char *cmd,
|
||||
|
||||
/* \? -- slash command help */
|
||||
else if (strcmp(cmd, "?") == 0)
|
||||
slashUsage();
|
||||
slashUsage(pset.popt.topt.pager);
|
||||
|
||||
#if 0
|
||||
|
||||
|
Reference in New Issue
Block a user