diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2017-04-08 16:45:38 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2017-04-10 12:01:40 +0200 |
commit | db9ef6263ec5b7885782ccf0a93e06b0c71f6944 (patch) | |
tree | b8be451ab6edf79c97f198be7f6dddaf004f8455 /src/nvim/macros.h | |
parent | 3b88e37b839fede81f40b5454490b6b8a89db5b7 (diff) | |
download | rneovim-db9ef6263ec5b7885782ccf0a93e06b0c71f6944.tar.gz rneovim-db9ef6263ec5b7885782ccf0a93e06b0c71f6944.tar.bz2 rneovim-db9ef6263ec5b7885782ccf0a93e06b0c71f6944.zip |
mbyte: replace vim_tolower with mb_tolower handling locale correctly
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r-- | src/nvim/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/macros.h b/src/nvim/macros.h index a8df6322cf..22fd48de9d 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -62,7 +62,7 @@ * toupper() and tolower() that use the current locale. * Careful: Only call TOUPPER_LOC() and TOLOWER_LOC() with a character in the * range 0 - 255. toupper()/tolower() on some systems can't handle others. - * Note: It is often better to use vim_tolower() and vim_toupper(), because many + * Note: It is often better to use mb_tolower() and mb_toupper(), because many * toupper() and tolower() implementations only work for ASCII. */ #define TOUPPER_LOC toupper |