comparison mcabber/src/compl.c @ 820:80bd7f49075f

Allow '*' in /event command
author Mikael Berthe <mikael@lilotux.net>
date Sat, 22 Apr 2006 22:41:06 +0200
parents 89ad7b530b3c
children f76b32ff2f14
comparison
equal deleted inserted replaced
819:c2d7d9dd4193 820:80bd7f49075f
220 } 220 }
221 if (cat_flags == COMPL_RESOURCE) { 221 if (cat_flags == COMPL_RESOURCE) {
222 return buddy_getresources_locale(NULL); 222 return buddy_getresources_locale(NULL);
223 } 223 }
224 if (cat_flags == COMPL_EVENTSID) { 224 if (cat_flags == COMPL_EVENTSID) {
225 return evs_geteventscomplist(); 225 return evs_geteventslist(TRUE);
226 } 226 }
227 227
228 return NULL; 228 return NULL;
229 } 229 }
230 230