Handles DEC alignment and intermediate chars, sends "unhandled" acts to debug fd

This commit is contained in:
Keith Winstein
2011-01-22 16:35:02 -05:00
parent bd2e1f99c1
commit b8d67c54f3
5 changed files with 71 additions and 12 deletions
+11 -1
View File
@@ -15,7 +15,7 @@ void Execute::act_on_terminal( Terminal::Emulator *emu )
void Clear::act_on_terminal( Terminal::Emulator *emu )
{
emu->clear();
emu->clear( this );
}
void Param::act_on_terminal( Terminal::Emulator *emu )
@@ -23,7 +23,17 @@ void Param::act_on_terminal( Terminal::Emulator *emu )
emu->param( this );
}
void Collect::act_on_terminal( Terminal::Emulator *emu )
{
emu->collect( this );
}
void CSI_Dispatch::act_on_terminal( Terminal::Emulator *emu )
{
emu->CSI_dispatch( this );
}
void Esc_Dispatch::act_on_terminal( Terminal::Emulator *emu )
{
emu->Esc_dispatch( this );
}