Commit d390dd8e authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

minor cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1649 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -145,7 +145,7 @@ int get_accepted_kbinput(WINDOW *win, int kbinput, int *meta)
kbinput = wgetch(win);
/* Esc Esc [three-digit decimal ASCII code from
* 000-255] == [corresponding ASCII character];
Esc Esc 2 obviously can't be Ctrl-2 here */
* Esc Esc 2 obviously can't be Ctrl-2 here */
if (kbinput >= '0' && kbinput <= '2')
kbinput = get_ascii_kbinput(win, kbinput);
/* Esc Esc [character] == Ctrl-[character];
......
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