Refactor display to be outside of terminal and add some const correctness

This commit is contained in:
Keith Winstein
2011-08-13 15:06:37 -04:00
parent 945acbca37
commit 023eb182d0
9 changed files with 123 additions and 106 deletions
+3 -1
View File
@@ -70,9 +70,11 @@ void UserByte::act_on_terminal( Terminal::Emulator *emu )
{
emu->dispatch.terminal_to_host.append( emu->user.input( this,
emu->fb.ds.application_mode_cursor_keys ) );
if ( c == 0x0c ) { /* Ctrl-L */
/*
if ( c == 0x0c ) { // Ctrl-L
emu->display.invalidate();
}
*/
}
void Resize::act_on_terminal( Terminal::Emulator *emu )