mirror of
git://git.sv.gnu.org/nano.git
synced 2025-01-01 07:04:26 +03:00
in parse_kbinput(), add missing break
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3985 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
b6fb6884ca
commit
916c7c26bf
@ -13,6 +13,8 @@ CVS code -
|
||||
- Rename NANO_ALT_.* and NANO_.*ALTKEY to NANO_META_.* and
|
||||
NANO_.*METAKEY, for consistency. (DLR)
|
||||
- winio.c:
|
||||
parse_kbinput()
|
||||
- Add missing break. (DLR)
|
||||
edit_draw()
|
||||
- Fix potential warnings when assigning -1 to paintlen by using
|
||||
if/else clauses instead of "?" operators. (DLR)
|
||||
|
@ -484,6 +484,7 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
|
||||
retval = get_control_kbinput(
|
||||
parse_escape_seq_kbinput(win,
|
||||
*kbinput));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user