diff --git a/library/Core.cpp b/library/Core.cpp index 620fc81d2..8c8badf16 100644 --- a/library/Core.cpp +++ b/library/Core.cpp @@ -281,29 +281,20 @@ static command_result runLuaScript(color_ostream &out, std::string filename, vec command_result Core::runCommand(color_ostream &out, const std::string &command) { - fprintf(stderr,"Inside runCommand"); - fprintf(stderr," with command %s\n",command.c_str()); if (!command.empty()) { - fprintf(stderr,"Command is not empty, tokenizing\n"); vector parts; Core::cheap_tokenise(command,parts); - fprintf(stderr,"Tokenized, got %d parts\n",parts.size()); if(parts.size() == 0) return CR_NOT_IMPLEMENTED; string first = parts[0]; - fprintf(stderr,"Erasing beginning\n"); parts.erase(parts.begin()); - - fprintf(stderr,"I think we're about there\n"); if (first[0] == '#') return CR_OK; cerr << "Invoking: " << command << endl; - - fprintf(stderr,"Returning with the next recursion\n"); return runCommand(out, first, parts); } else diff --git a/library/xml b/library/xml index c38188466..ad38c5e96 160000 --- a/library/xml +++ b/library/xml @@ -1 +1 @@ -Subproject commit c381884664c71adefbec44258a734def2c88dacc +Subproject commit ad38c5e96b05fedf16114fd16bd463e933f13582