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

Simplify _executable_autocomplete()

This commit is contained in:
Michael Vetter 2020-11-05 09:35:19 +01:00
parent 38978b153b
commit 711ea4887f

View File

@ -4135,11 +4135,8 @@ _executable_autocomplete(ProfWin* window, const char* const input, gboolean prev
char* result = NULL;
result = autocomplete_param_with_ac(input, "/executable", executable_ac, TRUE, previous);
if (result) {
return result;
}
return NULL;
return result;
}
static char*