Code Cleanup

- Removed conditional compilation of the shell, controlled by FEATURE_SHELL.
This commit is contained in:
Paul Beckingham 2011-04-03 19:41:19 -04:00
parent e4b0c6e7c0
commit 77ba7946f5
5 changed files with 1 additions and 15 deletions

View file

@ -282,9 +282,7 @@ int Context::dispatch (std::string &out)
else if (cmd.command == "import") { rc = handleImport (out); }
else if (cmd.command == "duplicate") { rc = handleDuplicate (out); }
else if (cmd.command == "edit") { rc = handleEdit (out); }
#ifdef FEATURE_SHELL
else if (cmd.command == "shell") { handleShell ( ); }
#endif
else if (cmd.command == "undo") { handleUndo ( ); }
else if (cmd.command == "merge") { tdb.gc ();
handleMerge (out); }