[1179] in BarnOwl Developers
[D-O-H] r1120 - trunk/owl
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:13:50 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
X-Original-To: nelhage@nelhage.com
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Tue, 2 Sep 2008 11:01:44 -0400 (EDT)
Author: asedeno
Date: 2008-09-02 11:01:44 -0400 (Tue, 02 Sep 2008)
New Revision: 1120
Modified:
trunk/owl/commands.c
Log:
Fixing the documentation for subscribe and unsubscribe.
Modified: trunk/owl/commands.c
===================================================================
--- trunk/owl/commands.c 2008-09-02 02:39:10 UTC (rev 1119)
+++ trunk/owl/commands.c 2008-09-02 15:01:44 UTC (rev 1120)
@@ -192,11 +192,11 @@
OWLCMD_ARGS("subscribe", owl_command_subscribe, OWL_CTX_ANY,
"subscribe to a zephyr class, instance, recipient",
- "subscribe [-t] <class> [instance] [recipient]",
+ "subscribe [-t] <class> [instance [recipient]]",
"Subscribe the specified class and instance. If the\n"
"instance or recipient is not listed on the command\n"
"line they default to * (the wildcard recipient).\n"
- "If the -t option is present the unsubscription will\n"
+ "If the -t option is present the subscription will\n"
"only be temporary, i.e., it will not be written to\n"
"the subscription file and will therefore not be\n"
"present the next time owl is started.\n"),
@@ -204,14 +204,14 @@
OWLCMD_ARGS("unsubscribe", owl_command_unsubscribe, OWL_CTX_ANY,
"unsubscribe from a zephyr class, instance, recipient",
- "unsubscribe [-t] <class> [instance] [recipient]",
+ "unsubscribe [-t] <class> [instance [recipient]]",
"Unsubscribe from the specified class and instance. If the\n"
"instance or recipient is not listed on the command\n"
"line they default to * (the wildcard recipient).\n"
- "If the -t option is present the subscription will\n"
- "only be temporary, i.e., it will not be written to\n"
+ "If the -t option is present the unsubscription will\n"
+ "only be temporary, i.e., it will not be updated in\n"
"the subscription file and will therefore not be\n"
- "present the next time owl is started.\n"),
+ "in effect the next time owl is started.\n"),
OWLCMD_ALIAS("unsub", "unsubscribe"),
OWLCMD_VOID("unsuball", owl_command_unsuball, OWL_CTX_ANY,