diff options
author | James Booth <boothj5@gmail.com> | 2014-10-18 00:18:10 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-10-18 00:18:10 +0100 |
commit | 48929aa92e533507cac013f514340eb3ba822729 (patch) | |
tree | bf8cc59e535043b8b123d710e4f3b487d2826b9c /src | |
parent | 9f2f54b2a0ee51f7f946c8bd259920a1df1b52cc (diff) | |
download | profani-tty-48929aa92e533507cac013f514340eb3ba822729.tar.gz |
Removed /help other
Diffstat (limited to 'src')
-rw-r--r-- | src/command/command.c | 1 | ||||
-rw-r--r-- | src/command/commands.c | 4 | ||||
-rw-r--r-- | src/ui/console.c | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/command/command.c b/src/command/command.c index c5f76f83..1579fe79 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -1050,7 +1050,6 @@ cmd_init(void) autocomplete_add(help_ac, "contacts"); autocomplete_add(help_ac, "service"); autocomplete_add(help_ac, "settings"); - autocomplete_add(help_ac, "other"); autocomplete_add(help_ac, "navigation"); // load command defs into hash table diff --git a/src/command/commands.c b/src/command/commands.c index 9cc2214d..60e07835 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -615,10 +615,6 @@ cmd_help(gchar **args, struct cmd_help_t help) "/titlebar", "/vercheck" }; _cmd_show_filtered_help("Settings commands", filter, ARRAY_SIZE(filter)); - } else if (strcmp(args[0], "other") == 0) { - gchar *filter[] = { "/vercheck" }; - _cmd_show_filtered_help("Other commands", filter, ARRAY_SIZE(filter)); - } else if (strcmp(args[0], "navigation") == 0) { cons_navigation_help(); } else { diff --git a/src/ui/console.c b/src/ui/console.c index 8fe6ce3e..d12edae8 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -1286,7 +1286,6 @@ _cons_help(void) cons_show("/help roster - List commands for manipulating your roster."); cons_show("/help service - List service discovery commands."); cons_show("/help settings - List commands for changing settings."); - cons_show("/help other - Other commands."); cons_show("/help navigation - How to navigate around Profanity."); cons_show("/help [command] - Detailed help on a specific command."); cons_show(""); |