mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
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)
04b871da80
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user