From 9672d38f91f908e8a314d2f4500d9ec6b24d3b02 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 13 Feb 2000 21:45:15 +0000 Subject: Adjusted psql echoing options (-a and -e) --- src/bin/psql/variables.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/bin/psql/variables.c') diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c index b0523dcb675..e7d67d6dc58 100644 --- a/src/bin/psql/variables.c +++ b/src/bin/psql/variables.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/variables.c,v 1.5 2000/01/29 16:58:49 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/variables.c,v 1.6 2000/02/13 21:45:14 petere Exp $ */ #include #include "variables.h" @@ -111,6 +111,14 @@ SetVariable(VariableSpace space, const char *name, const char *value) +bool +SetVariableBool(VariableSpace space, const char *name) +{ + return SetVariable(space, name, ""); +} + + + bool DeleteVariable(VariableSpace space, const char *name) { -- cgit v1.2.3