From 2b6597fe29731b6ad11f3de73c4b7abc05ec26b4 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 27 Mar 2016 00:50:12 -0400 Subject: [PATCH] CmdReport: Any unambiguous report name is allowed --- src/commands/CmdReport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdReport.cpp b/src/commands/CmdReport.cpp index d6a7ac08..f59b2210 100644 --- a/src/commands/CmdReport.cpp +++ b/src/commands/CmdReport.cpp @@ -44,7 +44,7 @@ static std::string findExtension ( options.push_back (File (script).name ()); std::vector matches; - autoComplete (partial, options, matches, 3); + autoComplete (partial, options, matches); if (matches.size () == 0) throw format ("The report '{1}' is not recognized.", partial);