From 5fdda06c3b48d7a5976a0e865f689247bc4fc855 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Tue, 13 Sep 2016 20:24:48 -0700 Subject: wip parser --- src/table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/table.rs') diff --git a/src/table.rs b/src/table.rs index 80f9a80..ebee5cf 100644 --- a/src/table.rs +++ b/src/table.rs @@ -1,7 +1,7 @@ /// This is the state change table. It's indexed first by current state and then by the next /// character in the pty stream. -use definitions::{State, Action}; +use definitions::Action; pub static STATE_CHANGE: [[u8; 256]; 16] = [ -- cgit