diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-28 02:31:03 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-07-28 02:34:24 +0200 |
commit | 3b45f676c0f07aa2826f191f555ba0d5f53e6d7c (patch) | |
tree | 6d60711a6db394f3f2648a5d0049f3f7260e1a94 /src/nvim/mbyte.c | |
parent | dc685387a3d60e9ea3d09c80c74d4613b618cf14 (diff) | |
download | rneovim-3b45f676c0f07aa2826f191f555ba0d5f53e6d7c.tar.gz rneovim-3b45f676c0f07aa2826f191f555ba0d5f53e6d7c.tar.bz2 rneovim-3b45f676c0f07aa2826f191f555ba0d5f53e6d7c.zip |
menu_get(): doc
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 4440300640..3fad6c789d 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -936,8 +936,7 @@ int utf_char2len(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 the number of bytes (between 1 and 6) -/// @note This does not include composing characters. +/// @return Number of bytes (1-6). Does not include composing characters. int utf_char2bytes(int c, char_u *const buf) { if (c < 0x80) { /* 7 bits */ |