diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-11-14 13:44:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-14 13:44:18 +0100 |
commit | 27f8b04f1791c29825bbe4b10e4a8db9472ecaee (patch) | |
tree | 1d8e2cd43baaca7f94ca08689b11231a128ec7cc /src/nvim/mbyte.h | |
parent | ee3a58d42e7fce666eef570db6f2944c29303d98 (diff) | |
parent | 71a4d275dc3fa71c656c0d2423f60904822aa223 (diff) | |
download | rneovim-27f8b04f1791c29825bbe4b10e4a8db9472ecaee.tar.gz rneovim-27f8b04f1791c29825bbe4b10e4a8db9472ecaee.tar.bz2 rneovim-27f8b04f1791c29825bbe4b10e4a8db9472ecaee.zip |
Merge pull request #16315 from bfredl/multibytes
refactor(multibyte): eliminate mb_* aliases for utf_* functions
Diffstat (limited to 'src/nvim/mbyte.h')
-rw-r--r-- | src/nvim/mbyte.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/nvim/mbyte.h b/src/nvim/mbyte.h index 9926f27411..1e5e332ad9 100644 --- a/src/nvim/mbyte.h +++ b/src/nvim/mbyte.h @@ -38,11 +38,6 @@ #define ENC_LATIN9 0x400 // Latin9 #define ENC_MACROMAN 0x800 // Mac Roman (not Macro Man! :-) -// TODO(bfredl): eventually we should keep only one of the namings -#define mb_ptr2len utfc_ptr2len -#define mb_char2len utf_char2len -#define mb_char2cells utf_char2cells - /// Flags for vimconv_T typedef enum { CONV_NONE = 0, |