mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-25 22:29:42 +03:00
tweaks: reshuffle a couple of conditions, to group things better
This commit is contained in:
parent
15ec0eb3ee
commit
7ee07af081
12
src/winio.c
12
src/winio.c
@ -602,15 +602,13 @@ int parse_kbinput(WINDOW *win)
|
||||
return SHIFT_TAB;
|
||||
shift_held = TRUE;
|
||||
}
|
||||
/* Is Delete pressed together with either Ctrl+Shift or Meta? */
|
||||
if (retval == KEY_DC) {
|
||||
if ((modifiers & 0x05) == 0x05)
|
||||
return CONTROL_SHIFT_DELETE;
|
||||
if (modifiers == 0x08)
|
||||
return ALT_DELETE;
|
||||
}
|
||||
/* Are Ctrl and Shift being held while Delete is pressed? */
|
||||
if (modifiers == 0x05 && retval == KEY_DC)
|
||||
return CONTROL_SHIFT_DELETE;
|
||||
/* Is Alt being held? */
|
||||
if (modifiers == 0x08) {
|
||||
if (retval == KEY_DC)
|
||||
return ALT_DELETE;
|
||||
if (retval == KEY_UP)
|
||||
return ALT_UP;
|
||||
if (retval == KEY_DOWN)
|
||||
|
Loading…
Reference in New Issue
Block a user