Commit 722b728a authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

another cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3813 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 2 deletions
+1 -2
......@@ -374,14 +374,13 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
* non-escape character as the result. */
*meta_key = TRUE;
retval = tolower(*kbinput);
} else {
} else
/* One escape followed by a non-escape, and
* there are other keystrokes waiting: escape
* sequence mode. Interpret the escape
* sequence. */
retval = parse_escape_seq_kbinput(win,
*kbinput);
}
break;
case 2:
if (get_key_buffer_len() == 0) {
......
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