Fix bug in state diagram

This commit is contained in:
Keith Winstein
2011-01-22 17:08:25 -05:00
parent b8d67c54f3
commit 65f7f3515c
2 changed files with 8 additions and 11 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ Transition CSI_Entry::input_state_rule( wchar_t ch )
return Transition( new Param, &family->s_CSI_Param );
}
if ( (ch <= 0x3C) && (ch <= 0x3F) ) {
if ( (0x3C <= ch) && (ch <= 0x3F) ) {
return Transition( new Collect, &family->s_CSI_Param );
}