Action names

This commit is contained in:
Keith Winstein
2011-01-10 00:24:25 -05:00
parent d8ac8c15c2
commit 2ce73ca1d5
5 changed files with 70 additions and 20 deletions
+7 -2
View File
@@ -34,11 +34,16 @@ Transition State::input( wchar_t ch )
return any;
}
Transition ret;
if ( ch >= 0xA0 ) {
return this->input_state_rule( 0x41 );
ret = this->input_state_rule( 0x41 );
} else {
ret = this->input_state_rule( ch );
}
return this->input_state_rule( ch );
ret.action.ch = ch;
return ret;
}
static bool C0_prime( wchar_t ch )