aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2021-10-17 16:24:34 +0200
committerMatěj Cepl <mcepl@cepl.eu>2021-10-24 08:57:30 +0200
commitb092171e7c632a2a6c8841056302ae281d993168 (patch)
tree4b4e27095da6264ba45275f8fd812ff3cdc22edb /src/nvim/buffer.c
parent36ff5976b9fee823892a1abcfb484cf3f162bb3b (diff)
downloadrneovim-b092171e7c632a2a6c8841056302ae281d993168.tar.gz
rneovim-b092171e7c632a2a6c8841056302ae281d993168.tar.bz2
rneovim-b092171e7c632a2a6c8841056302ae281d993168.zip
vim-patch:8.2.3525: option variable name does not match option name
Problem: Option variable name does not match option name. (Christ van Willigen) Solution: Rename the variable. https://github.com/vim/vim/commit/d4c4bfa0078a959ff90ef30288fd31d9d38f23d7
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index cfbbc5f9c5..809aa30692 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1967,7 +1967,7 @@ void free_buf_options(buf_T *buf, int free_p_ff)
clear_string_option(&buf->b_p_cpt);
clear_string_option(&buf->b_p_cfu);
clear_string_option(&buf->b_p_ofu);
- clear_string_option(&buf->b_p_thsfu);
+ clear_string_option(&buf->b_p_tsrfu);
clear_string_option(&buf->b_p_gp);
clear_string_option(&buf->b_p_mp);
clear_string_option(&buf->b_p_efm);