Commit 51cb7fd2 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

in get_control_kbinput(), fix Ctrl-? breakage

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3532 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 5 additions and 2 deletions
+5 -2
......@@ -1368,8 +1368,11 @@ int get_control_kbinput(int kbinput)
/* Ctrl-8 (Ctrl-?) */
else if (kbinput == '8')
retval = kbinput + 71;
/* Ctrl-? (Ctrl-8) to Ctrl-_ (Ctrl-/, Ctrl-7) */
else if ('?' <= kbinput && kbinput <= '_')
/* Ctrl-? (Ctrl-8) */
else if (kbinput == '?')
retval = kbinput + 64;
/* Ctrl-@ (Ctrl-Space, Ctrl-2, Ctrl-`) to Ctrl-_ (Ctrl-/, Ctrl-7) */
else if ('@' <= kbinput && kbinput <= '_')
retval = kbinput - 64;
/* Ctrl-` (Ctrl-2, Ctrl-Space, Ctrl-@) to Ctrl-~ (Ctrl-6, Ctrl-^) */
else if ('`' <= kbinput && kbinput <= '~')
......
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