diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-10-16 08:56:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-16 08:56:26 +0800 |
commit | 0b71960ab1bcbcc42f2d6abba4c72cd6ac3c840b (patch) | |
tree | ba17ea551188576f660573127e34275f87dc54b0 /src/nvim/buffer.c | |
parent | bc798dfd8cea9a5f93461e05dcb8409b6d96afc0 (diff) | |
parent | c8fbf39d474b1140bee10edbcf36305ea49bf863 (diff) | |
download | rneovim-0b71960ab1bcbcc42f2d6abba4c72cd6ac3c840b.tar.gz rneovim-0b71960ab1bcbcc42f2d6abba4c72cd6ac3c840b.tar.bz2 rneovim-0b71960ab1bcbcc42f2d6abba4c72cd6ac3c840b.zip |
Merge pull request #20677 from zeertzjq/vim-9.0.0761
vim-patch:9.0.{0761,0762,0764}: 'lispoptions'
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 29b00bad2a..84ff2fa59b 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -1959,8 +1959,9 @@ void free_buf_options(buf_T *buf, int free_p_ff) clear_string_option(&buf->b_p_ft); clear_string_option(&buf->b_p_cink); clear_string_option(&buf->b_p_cino); - clear_string_option(&buf->b_p_cinw); + clear_string_option(&buf->b_p_lop); clear_string_option(&buf->b_p_cinsd); + clear_string_option(&buf->b_p_cinw); clear_string_option(&buf->b_p_cpt); clear_string_option(&buf->b_p_cfu); clear_string_option(&buf->b_p_ofu); |