diff options
Diffstat (limited to 'src/table.rs')
-rw-r--r-- | src/table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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] = [ |