diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:14:43 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-28 00:14:43 +0000 |
commit | 02d79e765b5e15b433e5f93427a3c864b6a7d526 (patch) | |
tree | 3c4abe8c15af6b023ee777a3726c7bf8a4ce3439 /src/bin/psql/command.h | |
parent | 81b5c8a1364e7d287fb0aaac848f7f84e64b86d3 (diff) |
Rename psql's VERBOSE variable to VERBOSITY, per suggestion from Bruce.
Diffstat (limited to 'src/bin/psql/command.h')
-rw-r--r-- | src/bin/psql/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h index ead859cd32c..20e7efd2e2c 100644 --- a/src/bin/psql/command.h +++ b/src/bin/psql/command.h @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/command.h,v 1.15 2003/06/28 00:12:40 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/command.h,v 1.16 2003/07/28 00:14:43 tgl Exp $ */ #ifndef COMMAND_H #define COMMAND_H @@ -42,6 +42,6 @@ extern void SyncVariables(void); extern void UnsyncVariables(void); -extern void SyncVerboseVariable(void); +extern void SyncVerbosityVariable(void); #endif /* COMMAND_H */ |