tweaks: don't bother including Haiku escape sequences in the tiny version

master
Benno Schulenberg 2020-02-05 11:31:03 +01:00
parent 5ea6054a75
commit 3bd66b78c1
1 changed files with 2 additions and 0 deletions

View File

@ -397,6 +397,7 @@ int convert_sequence(const int *seq, size_t length, int *consumed)
#endif
}
break;
#ifndef NANO_TINY
case '5':
if (length > 2) {
*consumed = 3;
@ -412,6 +413,7 @@ int convert_sequence(const int *seq, size_t length, int *consumed)
}
}
break;
#endif
case 'A': /* Esc O A == Up on VT100/VT320. */
case 'B': /* Esc O B == Down on VT100/VT320. */
case 'C': /* Esc O C == Right on VT100/VT320. */