diff options
-rw-r--r-- | src/command/cmd_ac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/cmd_ac.c b/src/command/cmd_ac.c index 5cc0405a..ab62fa3a 100644 --- a/src/command/cmd_ac.c +++ b/src/command/cmd_ac.c @@ -1853,7 +1853,7 @@ static char* _plugins_autocomplete(ProfWin *window, const char *const input) { char *result = NULL; - if ((strncmp(input, "/plugins load ", 14) == 0) && (strlen(input) > 14)) { + if (strncmp(input, "/plugins load ", 14) == 0) { if (plugins_load_ac == NULL) { plugins_load_ac = autocomplete_new(); GSList *plugins = plugins_unloaded_list(); |