diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2021-10-17 16:24:34 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2021-10-24 08:57:30 +0200 |
commit | b092171e7c632a2a6c8841056302ae281d993168 (patch) | |
tree | 4b4e27095da6264ba45275f8fd812ff3cdc22edb /src/nvim/option.c | |
parent | 36ff5976b9fee823892a1abcfb484cf3f162bb3b (diff) | |
download | rneovim-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/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 b6b1c4b8a2..527930f0ac 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -5916,7 +5916,7 @@ static char_u *get_varp(vimoption_T *p) return (char_u *)&(curbuf->b_p_sw); case PV_TFU: return (char_u *)&(curbuf->b_p_tfu); - case PV_THSFU: + case PV_TSRFU: return (char_u *)&(curbuf->b_p_thsfu); case PV_TS: return (char_u *)&(curbuf->b_p_ts); |