X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Ftabcomplete.c;h=20caa125dc22b3adfb7226c1f9510315c03168e3;hb=d50425318f3ef8e1fce265519eb8ce2dcfaa51b8;hp=d3ec86afd370c2977624400c0647a60bd9ef2dbf;hpb=7401a51ed865b1dcdf5905b2bc6c793dc023416e;p=yaz-moved-to-github.git diff --git a/client/tabcomplete.c b/client/tabcomplete.c index d3ec86a..20caa12 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.3 2002-01-30 22:02:03 adam Exp $ + * $Id: tabcomplete.c,v 1.4 2002-02-24 12:24:40 adam Exp $ */ #include @@ -20,7 +20,7 @@ char* complete_from_list(char* completions[], const char *text, int state) { - static idx; + static int idx; if(state==0) { idx = 0; } @@ -57,7 +57,7 @@ void oid_loader(struct oident* oid, void* data_) { oid_callback_t* data=(oid_callback_t*) data_; - //fprintf(stderr,"ja7: called with %d: %s\n",oid->oclass,oid->desc); + if((oid->oclass == CLASS_GENERAL) || (oid->oclass == data->oclass)) { if(data->index==data->max) { data->values=(char**)realloc(data->values,((data->max+1)*2)*sizeof(char*)); @@ -66,7 +66,7 @@ void oid_loader(struct oident* oid, void* data_) data->values[data->index]=oid->desc; ++data->index; } -}; +} char** build_list_for_oclass(oid_class oclass) { oid_callback_t data; @@ -120,7 +120,7 @@ char* complete_attributeset(const char* text, int state) free(list); return res; -}; +} /* * Local variables: