aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
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_defs.h
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_defs.h')
-rw-r--r--src/nvim/buffer_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index db12942bbd..4f88aa8e76 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -698,7 +698,7 @@ struct file_buffer {
#endif
char_u *b_p_cfu; ///< 'completefunc'
char_u *b_p_ofu; ///< 'omnifunc'
- char_u *b_p_thsfu; ///< 'thesaurusfunc'
+ char_u *b_p_tsrfu; ///< 'thesaurusfunc'
char_u *b_p_tfu; ///< 'tagfunc'
int b_p_eol; ///< 'endofline'
int b_p_fixeol; ///< 'fixendofline'