diff options
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 77a161a3e1..8bdba82b67 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -2398,7 +2398,7 @@ static char_u *did_set_string_option(int opt_idx, char_u **varp, bool new_value_ didset_vimruntime = false; } } else if (varp == &p_rtp || varp == &p_pp) { // 'runtimepath' 'packpath' - invalidate_search_path(); + runtime_search_path_invalidate(); } else if (varp == &curwin->w_p_culopt || gvarp == &curwin->w_allbuf_opt.wo_culopt) { // 'cursorlineopt' if (**varp == NUL || fill_culopt_flags(*varp, curwin) != OK) { |