1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

rename _cmd_reset_who_completer

This commit is contained in:
Dmitry Podgorny 2012-11-11 16:32:18 +02:00
parent ef64262f8b
commit fb276338fa

View File

@ -65,7 +65,7 @@ static gboolean _cmd_set_boolean_preference(const char * const inp,
static char *_cmd_complete(char *inp);
static void _cmd_reset_command_completer(void);
static char *_cmd_who_complete(char *inp);
static void _cmd_reset_who_completer(void);
static void _cmd_who_reset_completer(void);
static char *_cmd_help_complete(char *inp);
static void _cmd_help_reset_completer(void);
static char *_cmd_notify_complete(char *inp);
@ -570,8 +570,8 @@ cmd_reset_autocomplete()
_cmd_help_reset_completer();
_cmd_notify_reset_completer();
_cmd_sub_reset_completer();
_cmd_who_reset_completer();
_cmd_reset_command_completer();
_cmd_reset_who_completer();
}
GSList *
@ -671,7 +671,7 @@ _cmd_who_complete(char *inp)
}
static void
_cmd_reset_who_completer(void)
_cmd_who_reset_completer(void)
{
p_autocomplete_reset(who_ac);
}