about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-09-09 22:59:23 +0100
committerJames Booth <boothj5@gmail.com>2015-09-09 22:59:47 +0100
commit232cc7601db1137b66665854e82bbf9b7b563600 (patch)
tree3c8d3904e8f840d40dccecc9de6d1161f6bf92d2
parent03ee1d56e6d2478d36b566a8106145778658b001 (diff)
downloadprofani-tty-232cc7601db1137b66665854e82bbf9b7b563600.tar.gz
Added otr and pgp to /prefs command help
-rw-r--r--src/command/command.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 4c7bd4f9..7849dde9 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -1478,7 +1478,7 @@ static struct cmd_t command_defs[] =
         cmd_prefs, parse_args, 0, 1, NULL,
         CMD_NOTAGS
         CMD_SYN(
-            "/prefs [ui|desktop|chat|log|conn|presence]")
+            "/prefs [ui|desktop|chat|log|conn|presence|otr|pgp]")
         CMD_DESC(
             "Show preferences for different areas of functionality. "
             "Passing no arguments shows all preferences.")
@@ -1488,7 +1488,9 @@ static struct cmd_t command_defs[] =
             { "chat",     "Chat state preferences." },
             { "log",      "Logging preferences." },
             { "conn",     "Connection handling preferences." },
-            { "presence", "Chat presence preferences." })
+            { "presence", "Chat presence preferences." },
+            { "otr",      "Off The Record preferences." },
+            { "pgp",      "OpenPGP preferences." })
         CMD_NOEXAMPLES
     },