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:
David Lawrence Ramsey 2006-12-02 17:17:09 +00:00
parent b6fb6884ca
commit 916c7c26bf
2 changed files with 3 additions and 0 deletions

View File

@ -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)

View File

@ -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;
}
}