Handles DEC alignment and intermediate chars, sends "unhandled" acts to debug fd
This commit is contained in:
+11
-1
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user