From aea27bc0e4e3f310196f0e6cee3de8cac69e9806 Mon Sep 17 00:00:00 2001 From: ja7 Date: Thu, 29 Aug 2002 19:34:44 +0000 Subject: [PATCH] Added complete_auto_reconnect from completing for the auto_reconnect command --- client/tabcomplete.c | 8 +++++++- client/tabcomplete.h | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/client/tabcomplete.c b/client/tabcomplete.c index b443c33..07cb0f0 100644 --- a/client/tabcomplete.c +++ b/client/tabcomplete.c @@ -2,7 +2,7 @@ * Copyright (c) 2002, Index Data * See the file LICENSE for details. * - * $Id: tabcomplete.c,v 1.6 2002-07-12 13:42:20 adam Exp $ + * $Id: tabcomplete.c,v 1.7 2002-08-29 19:34:44 ja7 Exp $ */ #include @@ -103,6 +103,12 @@ char* complete_querytype(const char *text, int state) return complete_from_list(querytypes,text,state); } +char* complete_auto_reconnect(const char *text, int state) +{ + char* querytypes[] = {"on","off",0}; + return complete_from_list(querytypes,text,state); +} + char* complete_format(const char* text, int state) { diff --git a/client/tabcomplete.h b/client/tabcomplete.h index d1552bf..5e1e88b 100644 --- a/client/tabcomplete.h +++ b/client/tabcomplete.h @@ -2,19 +2,19 @@ * Copyright (c) 2002, Index Data * See the file LICENSE for details. * - * $Id: tabcomplete.h,v 1.3 2002-06-17 14:57:34 ja7 Exp $ + * $Id: tabcomplete.h,v 1.4 2002-08-29 19:34:44 ja7 Exp $ */ /* This file contains the compleaters for the different commands. */ - char* complete_querytype(const char* text, int state); char* complete_format(const char* text, int state); char* complete_schema(const char* text, int state); char* complete_attributeset(const char* text, int state); char* default_completer(const char* text, int state); +char* complete_auto_reconnect(const char *text, int state); /* * Local variables: -- 1.7.10.4