Fix tab bug and initial one-second delay

This commit is contained in:
Keith Winstein
2011-08-14 00:26:13 -04:00
parent e56b8943f9
commit 549a3c3393
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ namespace Terminal {
/* XXX other fields not necessary to compare -- for now */
return ( width == x.width ) && ( height == x.height ) && ( cursor_col == x.cursor_col )
&& ( cursor_row == x.cursor_row ) && ( cursor_visible == x.cursor_visible ) &&
( reverse_video == x.reverse_video ) && ( renditions == x.renditions );
( reverse_video == x.reverse_video ) && ( renditions == x.renditions ) && ( tabs == x.tabs );
}
};