X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Ftabcomplete.c;h=db4552c9dca55779465462db8dc79607c627129d;hp=20caa125dc22b3adfb7226c1f9510315c03168e3;hb=a2df70871ff2494610edf71f7c7c74b785a69cd6;hpb=8f3cccf67a99a23174b918872b0963f2c24b8cd6 diff --git a/client/tabcomplete.c b/client/tabcomplete.c index 20caa12..db4552c 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.4 2002-02-24 12:24:40 adam Exp $ + * $Id: tabcomplete.c,v 1.5 2002-06-17 14:57:34 ja7 Exp $ */ #include @@ -12,6 +12,8 @@ #include #include "tabcomplete.h" +extern char** curret_global_list; + /* ***************************************************************************** * * generic compleater @@ -19,13 +21,15 @@ * *****************************************************************************/ char* complete_from_list(char* completions[], const char *text, int state) -{ +{ static int idx; + + if(!completions) return NULL; if(state==0) { idx = 0; } for(; completions[idx]; ++ idx) { - if(!strncmp(completions[idx],text,strlen(text))) { + if(!strncasecmp(completions[idx],text,strlen(text))) { ++idx; /* skip this entry on the next run */ return (char*)strdup(completions[idx-1]); }; @@ -122,6 +126,14 @@ char* complete_attributeset(const char* text, int state) return res; } + +char* default_completer(const char* text, int state) +{ + return complete_from_list(curret_global_list,text,state); +} + + + /* * Local variables: * tab-width: 4