diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-04-01 18:31:19 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-11-05 19:35:56 +0800 |
commit | 8b43091392ec895c77b83ff5964cd37b54976089 (patch) | |
tree | 9aa333349a3fa012ff07fd202f19736faf22e624 /src/nvim/option.c | |
parent | b92ed35a0bb873589bba9b51fdb92ffd00dc3e57 (diff) | |
download | rneovim-8b43091392ec895c77b83ff5964cd37b54976089.tar.gz rneovim-8b43091392ec895c77b83ff5964cd37b54976089.tar.bz2 rneovim-8b43091392ec895c77b83ff5964cd37b54976089.zip |
vim-patch:8.2.4100: early return when getting the 'formatlistpat' value
Problem: Early return when getting the 'formatlistpat' value.
Solution: Remove the first line. (Christian Brabandt)
https://github.com/vim/vim/commit/04b871da800768287a8a432de568b11297db8686
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index dc9f01ff60..8142be4eb1 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -5225,7 +5225,6 @@ unsigned int get_bkc_value(buf_T *buf) /// @param buf The buffer. char *get_flp_value(buf_T *buf) { - return buf->b_p_flp ? buf->b_p_flp : p_flp; if (buf->b_p_flp == NULL || *buf->b_p_flp == NUL) { return p_flp; } |