diff options
author | Joe Wilm <joe@jwilm.com> | 2016-09-13 20:24:48 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-09-13 20:24:48 -0700 |
commit | 5fdda06c3b48d7a5976a0e865f689247bc4fc855 (patch) | |
tree | e27d8f6015a62c7bfeef5290f009e1a6156e450f /src/table.rs | |
parent | 18ced2005087045bf5f83aa070f654eeb2ad955f (diff) | |
download | r-alacritty-vte-5fdda06c3b48d7a5976a0e865f689247bc4fc855.tar.gz r-alacritty-vte-5fdda06c3b48d7a5976a0e865f689247bc4fc855.tar.bz2 r-alacritty-vte-5fdda06c3b48d7a5976a0e865f689247bc4fc855.zip |
wip parser
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] = [ |