Renamed ActionState to Dispatcher

This commit is contained in:
Keith Winstein
2011-01-31 02:20:37 -05:00
parent ec328ecdee
commit 19e809b16e
7 changed files with 33 additions and 33 deletions
+3 -3
View File
@@ -28,17 +28,17 @@ void Execute::act_on_terminal( Terminal::Emulator *emu )
void Clear::act_on_terminal( Terminal::Emulator *emu )
{
emu->as.clear( this );
emu->dispatch.clear( this );
}
void Param::act_on_terminal( Terminal::Emulator *emu )
{
emu->as.newparamchar( this );
emu->dispatch.newparamchar( this );
}
void Collect::act_on_terminal( Terminal::Emulator *emu )
{
emu->as.collect( this );
emu->dispatch.collect( this );
}
void CSI_Dispatch::act_on_terminal( Terminal::Emulator *emu )