Commit 916c7c26 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in parse_kbinput(), add missing break

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3985 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent b6fb6884
Showing with 3 additions and 0 deletions
+3 -0
...@@ -13,6 +13,8 @@ CVS code - ...@@ -13,6 +13,8 @@ CVS code -
- Rename NANO_ALT_.* and NANO_.*ALTKEY to NANO_META_.* and - Rename NANO_ALT_.* and NANO_.*ALTKEY to NANO_META_.* and
NANO_.*METAKEY, for consistency. (DLR) NANO_.*METAKEY, for consistency. (DLR)
- winio.c: - winio.c:
parse_kbinput()
- Add missing break. (DLR)
edit_draw() edit_draw()
- Fix potential warnings when assigning -1 to paintlen by using - Fix potential warnings when assigning -1 to paintlen by using
if/else clauses instead of "?" operators. (DLR) if/else clauses instead of "?" operators. (DLR)
......
...@@ -484,6 +484,7 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key) ...@@ -484,6 +484,7 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
retval = get_control_kbinput( retval = get_control_kbinput(
parse_escape_seq_kbinput(win, parse_escape_seq_kbinput(win,
*kbinput)); *kbinput));
break;
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment