diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-04 21:22:30 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-09-04 21:32:08 -0400 |
commit | d29b71a1ded7daca90d8a770a25476295e95252f (patch) | |
tree | 01eb6a2113804f5adfda7b733d7909abec53e4fa /src/nvim/ex_getln.c | |
parent | 9d7dc49db133cabebc3b6017830020163526c533 (diff) | |
download | rneovim-d29b71a1ded7daca90d8a770a25476295e95252f.tar.gz rneovim-d29b71a1ded7daca90d8a770a25476295e95252f.tar.bz2 rneovim-d29b71a1ded7daca90d8a770a25476295e95252f.zip |
ex_cmds: const variables in find_help_tags()
keep_lang (param) is bool.
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 786e2cd12c..ff625d6dc9 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -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; } |