ex_cmds: const variables in find_help_tags()

keep_lang (param) is bool.
This commit is contained in:
Jan Edmund Lazo
2018-09-04 21:22:30 -04:00
parent 9d7dc49db1
commit d29b71a1de
2 changed files with 10 additions and 14 deletions

View File

@@ -4677,7 +4677,7 @@ ExpandFromContext (
/* With an empty argument we would get all the help tags, which is
* very slow. Get matches for "help" instead. */
if (find_help_tags(*pat == NUL ? (char_u *)"help" : pat,
num_file, file, FALSE) == OK) {
num_file, file, false) == OK) {
cleanup_help_tags(*num_file, *file);
return OK;
}