Command - prepend

- Migrated handlePrepend to CmdPrepend.
This commit is contained in:
Paul Beckingham 2011-05-28 16:40:39 -04:00
parent 920e1c6c86
commit ef65617258
9 changed files with 177 additions and 92 deletions

View file

@ -262,7 +262,6 @@ int Context::dispatch (std::string &out)
else if (cmd.command == "add") { rc = handleAdd (out); }
else if (cmd.command == "log") { rc = handleLog (out); }
else if (cmd.command == "append") { rc = handleAppend (out); }
else if (cmd.command == "prepend") { rc = handlePrepend (out); }
else if (cmd.command == "annotate") { rc = handleAnnotate (out); }
else if (cmd.command == "denotate") { rc = handleDenotate (out); }
else if (cmd.command == "done") { rc = handleDone (out); }