tweaks: reduce the indentation after the previous change
parent
a33b04ce90
commit
3e899b15c2
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue