mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 07:36:21 +00:00
Pass plugin name to all autocompleter functions
This commit is contained in:
@@ -167,13 +167,13 @@ api_completer_add(const char *const plugin_name, const char *key, char **items)
|
||||
}
|
||||
|
||||
void
|
||||
api_completer_remove(const char *key, char **items)
|
||||
api_completer_remove(const char *const plugin_name, const char *key, char **items)
|
||||
{
|
||||
autocompleters_remove(key, items);
|
||||
}
|
||||
|
||||
void
|
||||
api_completer_clear(const char *key)
|
||||
api_completer_clear(const char *const plugin_name, const char *key)
|
||||
{
|
||||
autocompleters_clear(key);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user