diff options
author | dundargoc <gocdundar@gmail.com> | 2024-09-29 14:07:21 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-10-23 14:13:42 +0200 |
commit | 3a86b60032bd659c2b12e984abb40cee93568558 (patch) | |
tree | 4070063b1f97ea8ab1b91dab66629ffe6030013b /src/nvim/mbyte.c | |
parent | f6f2334ac28f41994ad6480b1a19e653c659662c (diff) | |
download | rneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.gz rneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.bz2 rneovim-3a86b60032bd659c2b12e984abb40cee93568558.zip |
docs: misc
Co-authored-by: David Pedersen <limero@me.com>
Co-authored-by: Gregory Anders <greg@gpanders.com>
Co-authored-by: Leo Schlosser <Leo.Schlosser@Student.HTW-Berlin.de>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 01e720283e..6340ff8c94 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -454,9 +454,6 @@ static bool prop_is_emojilike(const utf8proc_property_t *prop) /// Is only correct for characters >= 0x80. /// When p_ambw is "double", return 2 for a character with East Asian Width /// class 'A'(mbiguous). -/// -/// @note Tables `doublewidth` and `ambiguous` are generated by -/// gen_unicode_tables.lua, which must be manually invoked as needed. int utf_char2cells(int c) { if (c < 0x80) { |