Commit 7401670d authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: fix compilation when configured with --enable-tiny

No related merge requests found
Showing with 2 additions and 0 deletions
+2 -0
...@@ -406,6 +406,7 @@ int parse_kbinput(WINDOW *win) ...@@ -406,6 +406,7 @@ int parse_kbinput(WINDOW *win)
case 'D': case 'D':
retval = CONTROL_LEFT; retval = CONTROL_LEFT;
break; break;
#ifndef NANO_TINY
case 'a': case 'a':
retval = shiftaltup; retval = shiftaltup;
break; break;
...@@ -418,6 +419,7 @@ int parse_kbinput(WINDOW *win) ...@@ -418,6 +419,7 @@ int parse_kbinput(WINDOW *win)
case 'd': case 'd':
retval = shiftaltleft; retval = shiftaltleft;
break; break;
#endif
} }
double_esc = FALSE; double_esc = FALSE;
escapes = 0; escapes = 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