aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorRob Pilling <robpilling@gmail.com>2019-10-10 22:06:45 +0100
committerRob Pilling <robpilling@gmail.com>2019-10-22 20:13:02 +0100
commit194f7bfacea934177d524197127242947bd28471 (patch)
treed13ac87810663c783907e96c8a9a691630755ddf /src/nvim/buffer.c
parente284b7233fb459a7a6d4ce0f98371b34b3639d2b (diff)
downloadrneovim-194f7bfacea934177d524197127242947bd28471.tar.gz
rneovim-194f7bfacea934177d524197127242947bd28471.tar.bz2
rneovim-194f7bfacea934177d524197127242947bd28471.zip
vim-patch:8.1.1228: not possible to process tags with a function
Problem: Not possible to process tags with a function. Solution: Add tagfunc() (Christian Brabandt, Andy Massimino, closes vim/vim#4010) https://github.com/vim/vim/commit/45e18cbdc40afd8144d20dcc07ad2d981636f4c9
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index b81ffd09e1..1d5aa8ba9b 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1947,6 +1947,7 @@ void free_buf_options(buf_T *buf, int free_p_ff)
clear_string_option(&buf->b_p_path);
clear_string_option(&buf->b_p_tags);
clear_string_option(&buf->b_p_tc);
+ clear_string_option(&buf->b_p_tfu);
clear_string_option(&buf->b_p_dict);
clear_string_option(&buf->b_p_tsr);
clear_string_option(&buf->b_p_qe);