Remove references to rustdoc_ng

This commit is contained in:
Brian Anderson
2013-12-31 14:50:38 -08:00
parent 8ec03b37c0
commit 14f59e8902
2 changed files with 1 additions and 4 deletions

View File

@@ -19,7 +19,4 @@ extern mod this = "rustdoc";
#[cfg(rustc)] #[cfg(rustc)]
extern mod this = "rustc"; extern mod this = "rustc";
#[cfg(rustdoc_ng)]
extern mod this = "rustdoc_ng";
fn main() { this::main() } fn main() { this::main() }

View File

@@ -242,7 +242,7 @@ fn rust_input(cratefile: &str, matches: &getopts::Matches) -> Output {
} }
// Load all plugins/passes into a PluginManager // Load all plugins/passes into a PluginManager
let path = matches.opt_str("plugin-path").unwrap_or(~"/tmp/rustdoc_ng/plugins"); let path = matches.opt_str("plugin-path").unwrap_or(~"/tmp/rustdoc/plugins");
let mut pm = plugins::PluginManager::new(Path::new(path)); let mut pm = plugins::PluginManager::new(Path::new(path));
for pass in passes.iter() { for pass in passes.iter() {
let plugin = match PASSES.iter().position(|&(p, _, _)| p == *pass) { let plugin = match PASSES.iter().position(|&(p, _, _)| p == *pass) {