Removing do keyword from librustdoc

This commit is contained in:
Scott Lawrence 2014-01-26 22:13:29 -05:00
parent 1d80a9a0f6
commit af218d68e4
1 changed files with 2 additions and 2 deletions

View File

@ -211,10 +211,10 @@ fn rust_input(cratefile: &str, matches: &getopts::Matches) -> Output {
let cfgs = matches.opt_strs("cfg");
let cr = Path::new(cratefile);
info!("starting to run rustc");
let (crate, analysis) = do std::task::try {
let (crate, analysis) = std::task::try(proc() {
let cr = cr;
core::run_core(libs.move_iter().collect(), cfgs, &cr)
}.unwrap();
}).unwrap();
info!("finished with rustc");
local_data::set(analysiskey, analysis);