diff options
Diffstat (limited to 'src/core/hook/wee-hook-completion.c')
-rw-r--r-- | src/core/hook/wee-hook-completion.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hook/wee-hook-completion.c b/src/core/hook/wee-hook-completion.c index e2722e136..b277d1042 100644 --- a/src/core/hook/wee-hook-completion.c +++ b/src/core/hook/wee-hook-completion.c @@ -35,6 +35,18 @@ /* + * Returns description of hook. + * + * Note: result must be freed after use. + */ + +char * +hook_completion_get_description (struct t_hook *hook) +{ + return strdup (HOOK_COMPLETION(hook, completion_item)); +} + +/* * Hooks a completion. * * Returns pointer to new hook, NULL if error. |