mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single byte
Problem: 'fillchars' "stl" and "stlnc" items must be single byte. Solution: Accept multi-byte characters. (Christian Wellenbrock, Yegappan Lakshmanan, closes #7927)
This commit is contained in:
@@ -266,7 +266,7 @@ fill_foldcolumn(
|
||||
empty = (fdc == 1) ? 0 : 1;
|
||||
|
||||
// If the column is too narrow, we start at the lowest level that
|
||||
// fits and use numbers to indicated the depth.
|
||||
// fits and use numbers to indicate the depth.
|
||||
first_level = level - fdc - closed + 1 + empty;
|
||||
if (first_level < 1)
|
||||
first_level = 1;
|
||||
|
Reference in New Issue
Block a user