diff options
Diffstat (limited to 'core/ucaps.h')
-rw-r--r-- | core/ucaps.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/ucaps.h b/core/ucaps.h index ad71731617..79b346acba 100644 --- a/core/ucaps.h +++ b/core/ucaps.h @@ -1373,7 +1373,6 @@ static const int reverse_caps_table[CAPS_LEN - 1][2] = { }; static int _find_upper(int ch) { - int low = 0; int high = CAPS_LEN - 1; int middle; @@ -1394,7 +1393,6 @@ static int _find_upper(int ch) { } static int _find_lower(int ch) { - int low = 0; int high = CAPS_LEN - 2; int middle; |