From a443257aaae352123cd97e55670201712a1a26db Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 11 Jul 2008 15:19:59 -0400 Subject: [PATCH] - Fixed bug whereby descriptions could not be altered. --- src/parse.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/parse.cpp b/src/parse.cpp index 89d30184b..770c2b2f0 100644 --- a/src/parse.cpp +++ b/src/parse.cpp @@ -415,7 +415,8 @@ void parse ( if (isCommand (arg) && validCommand (arg)) command = arg; else - throw std::string ("'") + arg + "' is not a valid command."; + descCandidate += arg; +// throw std::string ("'") + arg + "' is not a valid command."; } // Anything else is just considered description.