diff options
author | dundargoc <gocdundar@gmail.com> | 2024-06-29 11:46:20 +0200 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-06-29 17:57:56 +0200 |
commit | 435d0182d293e70b14a5655c976c3c6daa6ea765 (patch) | |
tree | 291fe766b0bec5b7d65192cf2b965dc37aa6ae0f /src/nvim/mbyte.c | |
parent | ace0d5306b343a4b3e96175b25ab421dba336344 (diff) | |
download | rneovim-435d0182d293e70b14a5655c976c3c6daa6ea765.tar.gz rneovim-435d0182d293e70b14a5655c976c3c6daa6ea765.tar.bz2 rneovim-435d0182d293e70b14a5655c976c3c6daa6ea765.zip |
refactor: remove special handling for lowercase German sharp s
utf8proc already defines LATIN CAPITAL LETTER SHARP S (ẞ) to be the
uppercase variant of LATIN SMALL LETTER SHARP S (ß), so this special
workaround when using `gU` is no longer needed on the neovim side.
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 e9004c3b8f..a544113a7b 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -1326,9 +1326,6 @@ int utf_fold(int a) // invalid values or can't handle latin1 when the locale is C. // Speed is most important here. -// Note: UnicodeData.txt does not define U+1E9E as being the corresponding upper -// case letter for U+00DF (ß), however it is part of the toLower table - /// Return the upper-case equivalent of "a", which is a UCS-4 character. Use /// simple case folding. int mb_toupper(int a) |