aboutsummaryrefslogtreecommitdiff
path: root/codegen/src
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/src')
-rw-r--r--codegen/src/ext/utf8.rs2
-rw-r--r--codegen/src/main.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/codegen/src/ext/utf8.rs b/codegen/src/ext/utf8.rs
index 5b73081..17ebc22 100644
--- a/codegen/src/ext/utf8.rs
+++ b/codegen/src/ext/utf8.rs
@@ -13,7 +13,7 @@ use syntex_syntax::parse::PResult;
use syntex_syntax::ptr::P;
use syntex_syntax::tokenstream::TokenTree;
-#[path="../../../src/utf8/types.rs"]
+#[path="../../../utf8parse/src/types.rs"]
mod types;
use self::types::{State, Action, pack};
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");
}