0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.2b-004

This commit is contained in:
Bram Moolenaar
2008-07-14 21:05:15 +00:00
parent af51e66c5a
commit 9c24ccc7b8
3 changed files with 20 additions and 6 deletions

View File

@@ -3779,7 +3779,7 @@ ex_helpgrep(eap)
/* Make 'cpoptions' empty, the 'l' flag should not be used here. */
save_cpo = p_cpo;
p_cpo = (char_u *)"";
p_cpo = empty_option;
#ifdef FEAT_MULTI_LANG
/* Check for a specified language */
@@ -3889,7 +3889,11 @@ ex_helpgrep(eap)
qi->qf_lists[qi->qf_curlist].qf_index = 1;
}
p_cpo = save_cpo;
if (p_cpo == empty_option)
p_cpo = save_cpo;
else
/* Darn, some plugin changed the value. */
free_string_option(save_cpo);
#ifdef FEAT_WINDOWS
qf_update_buffer(qi);