diff options
Diffstat (limited to 'src/nvim/grid.c')
-rw-r--r-- | src/nvim/grid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/grid.c b/src/nvim/grid.c index 24a82b7e78..56246bf001 100644 --- a/src/nvim/grid.c +++ b/src/nvim/grid.c @@ -443,7 +443,7 @@ int grid_line_puts(int col, const char *text, int textlen, int attr) if (col + mbyte_cells > max_col) { // Only 1 cell left, but character requires 2 cells: - // display a '>' in the last column to avoid wrapping. */ + // display a '>' in the last column to avoid wrapping. schar = schar_from_ascii('>'); mbyte_cells = 1; } |