aboutsummaryrefslogtreecommitdiff
path: root/codegen/src/main.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-09-17 17:02:29 -0700
committerJoe Wilm <joe@jwilm.com>2016-09-17 17:03:25 -0700
commit917080a5c27b3310daab135f9bfdbc531cb54186 (patch)
tree29e73dbde735185a6edbf0e7d3b1c354cf6a75b5 /codegen/src/main.rs
parent85388ab070fbc41c8cce3ffbfbcc0d1d917109e0 (diff)
downloadr-alacritty-vte-917080a5c27b3310daab135f9bfdbc531cb54186.tar.gz
r-alacritty-vte-917080a5c27b3310daab135f9bfdbc531cb54186.tar.bz2
r-alacritty-vte-917080a5c27b3310daab135f9bfdbc531cb54186.zip
Move utf8 parsing into separate crate
Diffstat (limited to 'codegen/src/main.rs')
-rw-r--r--codegen/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/codegen/src/main.rs b/codegen/src/main.rs
index 5f8d153..0d21577 100644
--- a/codegen/src/main.rs
+++ b/codegen/src/main.rs
@@ -17,7 +17,7 @@ fn main() {
// Expand UTF8 parser state table
let mut registry = syntex::Registry::new();
ext::utf8::register(&mut registry);
- let src = &Path::new("../src/utf8/table.rs.in");
- let dst = &Path::new("../src/utf8/table.rs");
+ let src = &Path::new("../utf8parse/src/table.rs.in");
+ let dst = &Path::new("../utf8parse/src/table.rs");
registry.expand("utf8_state_table", src, dst).expect("expand utf8_stable_table ok");
}