diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-09-07 19:28:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-07 19:28:15 -0700 |
commit | 3dbd94dafa25b6bd5a425b3a5b0c57ee196bde27 (patch) | |
tree | 208fa917f8051bc4eab0c8f749be41e77ef09311 /src/nvim/mbyte.c | |
parent | dd7355358edc40734afcce695432756859377eb8 (diff) | |
parent | 15459f92551c9f20a0bd5625e8bd9a4259a6c16c (diff) | |
download | rneovim-3dbd94dafa25b6bd5a425b3a5b0c57ee196bde27.tar.gz rneovim-3dbd94dafa25b6bd5a425b3a5b0c57ee196bde27.tar.bz2 rneovim-3dbd94dafa25b6bd5a425b3a5b0c57ee196bde27.zip |
Merge #10963 from janlazo/vim-8.1.1988
vim-patch:8.0.1550,8.1.{1716,1988}
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |