- removed previously introduced _sha1 helper command
- modified helper command _version to either display the version
  or the sha1 depending if build from source tar ball or from git.
This commit is contained in:
Federico Hernandez 2011-01-15 22:18:44 +01:00
parent c0c58f9aff
commit 55de71feca
4 changed files with 1 additions and 15 deletions

View file

@ -269,7 +269,6 @@ int Context::dispatch (std::string &out)
else if (cmd.command == "_ids") { rc = handleCompletionIDs (out); }
else if (cmd.command == "_config") { rc = handleCompletionConfig (out); }
else if (cmd.command == "_version") { rc = handleCompletionVersion (out); }
else if (cmd.command == "_sha1") { rc = handleSha1 (out); }
else if (cmd.command == "_urgency") { rc = handleUrgency (out); }
else if (cmd.command == "_query") { rc = handleQuery (out); }
else if (cmd.command == "_zshcommands") { rc = handleZshCompletionCommands (out); }