Transitional change to make extfmt output lowercase module name

This commit is contained in:
Marijn Haverbeke 2011-05-12 18:28:34 +02:00
parent 6510f1ce7c
commit b1d3364487

@ -163,7 +163,7 @@ fn pieces_to_expr(parser p, vec[piece] pieces, vec[@ast.expr] args)
fn make_path_vec(str ident) -> vec[str] {
// FIXME: #fmt can't currently be used from within std
// because we're explicitly referencing the 'std' crate here
ret vec("std", "ExtFmt", "RT", ident);
ret vec("std", "extfmt", "RT", ident);
}
fn make_rt_path_expr(parser p, common.span sp, str ident) -> @ast.expr {