1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Simplify _correction_autocomplete()

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

View File

@ -4031,11 +4031,8 @@ _correction_autocomplete(ProfWin* window, const char* const input, gboolean prev
char* result = NULL;
result = autocomplete_param_with_ac(input, "/correction", correction_ac, TRUE, previous);
if (result) {
return result;
}
return NULL;
return result;
}
static char*