Basic terminal parser

This commit is contained in:
Keith Winstein
2011-01-10 01:29:30 -05:00
parent 2ce73ca1d5
commit 546068a5ed
3 changed files with 258 additions and 9 deletions
+1
View File
@@ -42,6 +42,7 @@ Transition State::input( wchar_t ch )
ret = this->input_state_rule( ch );
}
ret.action.char_present = true;
ret.action.ch = ch;
return ret;
}