From 4add2f4f895dcd52c59942013107ef9672a02468 Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 7 Sep 2019 10:32:54 -0400 Subject: vim-patch:8.0.1550: various small problems in source files Problem: Various small problems in source files. Solution: Fix the problems. https://github.com/vim/vim/commit/792f0e36593d1ec13ccb8a622ca5542c500577b4 --- src/nvim/mbyte.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 29b8dc0ef2..85e6697bfb 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -978,7 +978,7 @@ int utf_char2len(const int c) /// /// @param c character to convert to \p buf /// @param[out] buf UTF-8 string generated from \p c, does not add \0 -/// @return Number of bytes (1-6). Does not include composing characters. +/// @return Number of bytes (1-6). int utf_char2bytes(const int c, char_u *const buf) { if (c < 0x80) { // 7 bits -- cgit