mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
patch 8.2.3914: various spelling mistakes in comments
Problem: Various spelling mistakes in comments. Solution: Fix the mistakes. (Dominique Pellé, closes #9416)
This commit is contained in:
committed by
Bram Moolenaar
parent
5da36052a4
commit
af4a61a85d
22
src/screen.c
22
src/screen.c
@@ -614,9 +614,9 @@ screen_line(
|
||||
}
|
||||
// When writing a single-width character over a double-width
|
||||
// character and at the end of the redrawn text, need to clear out
|
||||
// the right halve of the old character.
|
||||
// Also required when writing the right halve of a double-width
|
||||
// char over the left halve of an existing one.
|
||||
// the right half of the old character.
|
||||
// Also required when writing the right half of a double-width
|
||||
// char over the left half of an existing one.
|
||||
if (has_mbyte && col + char_cells == endcol
|
||||
&& ((char_cells == 1
|
||||
&& (*mb_off2cells)(off_to, max_off_to) > 1)
|
||||
@@ -1524,8 +1524,8 @@ screen_puts_len(
|
||||
return;
|
||||
off = LineOffset[row] + col;
|
||||
|
||||
// When drawing over the right halve of a double-wide char clear out the
|
||||
// left halve. Only needed in a terminal.
|
||||
// When drawing over the right half of a double-wide char clear out the
|
||||
// left half. Only needed in a terminal.
|
||||
if (has_mbyte && col > 0 && col < screen_Columns
|
||||
#ifdef FEAT_GUI
|
||||
&& !gui.in_use
|
||||
@@ -1653,9 +1653,9 @@ screen_puts_len(
|
||||
#endif
|
||||
// When at the end of the text and overwriting a two-cell
|
||||
// character with a one-cell character, need to clear the next
|
||||
// cell. Also when overwriting the left halve of a two-cell char
|
||||
// with the right halve of a two-cell char. Do this only once
|
||||
// (mb_off2cells() may return 2 on the right halve).
|
||||
// cell. Also when overwriting the left half of a two-cell char
|
||||
// with the right half of a two-cell char. Do this only once
|
||||
// (mb_off2cells() may return 2 on the right half).
|
||||
if (clear_next_cell)
|
||||
clear_next_cell = FALSE;
|
||||
else if (has_mbyte
|
||||
@@ -2376,9 +2376,9 @@ screen_fill(
|
||||
#endif
|
||||
)
|
||||
{
|
||||
// When drawing over the right halve of a double-wide char clear
|
||||
// out the left halve. When drawing over the left halve of a
|
||||
// double wide-char clear out the right halve. Only needed in a
|
||||
// When drawing over the right half of a double-wide char clear
|
||||
// out the left half. When drawing over the left half of a
|
||||
// double wide-char clear out the right half. Only needed in a
|
||||
// terminal.
|
||||
if (start_col > 0 && mb_fix_col(start_col, row) != start_col)
|
||||
screen_puts_len((char_u *)" ", 1, row, start_col - 1, 0);
|
||||
|
Reference in New Issue
Block a user