diff options
| author | Graydon Hoare <[email protected]> | 2011-02-25 15:00:30 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-02-25 15:43:50 -0800 |
| commit | 7a6ac1c00041fc8043e240c8fb7255251fea63f4 (patch) | |
| tree | a7baba1e54eea01e793a22869ca028a317ce4a8a /src/comp/front | |
| parent | Update manual to define identifiers using UAX 31 XID_Start / XID_Continue. (diff) | |
| download | rust-7a6ac1c00041fc8043e240c8fb7255251fea63f4.tar.xz rust-7a6ac1c00041fc8043e240c8fb7255251fea63f4.zip | |
Fix typo in crate directive evaluator.
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/eval.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/eval.rs b/src/comp/front/eval.rs index 7275e557..ab8d5d32 100644 --- a/src/comp/front/eval.rs +++ b/src/comp/front/eval.rs @@ -412,7 +412,7 @@ impure fn eval_crate_directive(parser p, } auto full_path = prefix + std.os.path_sep() + path; - auto m0 = eval_crate_directives_to_mod(p, e, cdirs, path); + auto m0 = eval_crate_directives_to_mod(p, e, cdirs, full_path); auto im = ast.item_mod(id, m0, p.next_def_id()); auto i = @spanned(cdir.span, cdir.span, im); ast.index_item(index, i); |