0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.1547: various comment problems

Problem:    Various comment problems.
Solution:   Update comments.
This commit is contained in:
Bram Moolenaar
2020-08-30 19:26:45 +02:00
parent cd80006ecb
commit 02c037a4be
9 changed files with 26 additions and 13 deletions

View File

@@ -1607,7 +1607,7 @@ utf_ptr2cells(
{
int c;
// Need to convert to a wide character.
// Need to convert to a character number.
if (*p >= 0x80)
{
c = utf_ptr2char(p);
@@ -1762,7 +1762,7 @@ dbcs_ptr2char(char_u *p)
}
/*
* Convert a UTF-8 byte sequence to a wide character.
* Convert a UTF-8 byte sequence to a character number.
* If the sequence is illegal or truncated by a NUL the first byte is
* returned.
* For an overlong sequence this may return zero.