diff options
Diffstat (limited to 'src')
-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 c0bbd3e053..e9004c3b8f 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -1352,8 +1352,7 @@ int mb_toupper(int a) bool mb_islower(int a) { - // German sharp s is lower case but has no upper case equivalent. - return (mb_toupper(a) != a) || a == 0xdf; + return mb_toupper(a) != a; } /// Return the lower-case equivalent of "a", which is a UCS-4 character. Use |