Handle cursor key mode (application vs. ANSI). "less" now works.

This commit is contained in:
Keith Winstein
2011-02-03 03:56:02 -05:00
parent 4ca5b35d7d
commit 5a3c4a201b
9 changed files with 41 additions and 14 deletions
+2 -1
View File
@@ -68,5 +68,6 @@ void OSC_End::act_on_terminal( Terminal::Emulator *emu )
void UserByte::act_on_terminal( Terminal::Emulator *emu )
{
emu->dispatch.terminal_to_host.append( emu->user.input( this ) );
emu->dispatch.terminal_to_host.append( emu->user.input( this,
emu->fb.ds.application_mode_cursor_keys ) );
}