tweaks: elide an unneeded variable, as there is nothing beyond '*place'

This commit is contained in:
Benno Schulenberg 2020-06-18 12:03:54 +02:00
parent b61d97eb9a
commit 290b250141

View File

@ -2513,12 +2513,8 @@ char *input_tab(char *buf, bool allow_files, size_t *place,
/* If the word starts with `~' and there is no slash in the word,
* then try completing this word as a username. */
if (*place > 0 && *buf == '~') {
const char *slash = strchr(buf, '/');
if (slash == NULL || slash >= buf + *place)
matches = username_tab_completion(buf, &num_matches, *place);
}
if (buf[0] == '~' && strchr(buf, '/') == NULL)
matches = username_tab_completion(buf, &num_matches, *place);
/* If nothing matched yet, match against filenames in current directory. */
if (matches == NULL)