From 60b7da8ea71550651a77cf18ef856acf3e6281d9 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 24 Sep 2019 19:45:41 +1200 Subject: [PATCH] Fix help regression --- src/commands/help.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/commands/help.rs b/src/commands/help.rs index 4ddd147b42..c8b22898da 100644 --- a/src/commands/help.rs +++ b/src/commands/help.rs @@ -28,13 +28,6 @@ impl PerItemCommand for Help { ) -> Result { let tag = call_info.name_tag; - if call_info.args.len() == 0 { - return Ok(vec![Ok(ReturnSuccess::Action(CommandAction::EnterHelpShell( - Value::nothing().tagged(tag), - )))] - .into()); - } - match call_info.args.expect_nth(0)? { Tagged { item: Value::Primitive(Primitive::String(document)),