tweaks: reduce the indentation after the previous change

master
Benno Schulenberg 2020-07-24 17:12:31 +02:00
parent a33b04ce90
commit 3e899b15c2
1 changed files with 26 additions and 27 deletions

View File

@ -1011,12 +1011,11 @@ int parse_kbinput(WINDOW *win)
else else
retval = byte; retval = byte;
} else if (digit_count > 0) { } else if (digit_count > 0) {
/* A non-digit in the middle of a byte sequence: /* A non-digit in the middle of a byte sequence... */
* the keycode itself is the result. */
retval = keycode; retval = keycode;
} else if (!solitary) { } else if (!solitary) {
meta_key = TRUE;
retval = (shifted_metas) ? keycode : tolower(keycode); retval = (shifted_metas) ? keycode : tolower(keycode);
meta_key = TRUE;
} else } else
retval = convert_to_control(keycode); retval = convert_to_control(keycode);
escapes = 0; escapes = 0;