diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-12-18 19:38:42 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-12-18 19:38:42 +0100 |
commit | ea567c6fd3ff600cc810c3f2332ad5b35ea1d684 (patch) | |
tree | b5aed0afcb1cfaf8ea23721614d2943914e212f2 /src | |
parent | ba9e3e8c84ba5a96366bcc0d2a979d2e9175eb59 (diff) | |
download | weechat-ea567c6fd3ff600cc810c3f2332ad5b35ea1d684.zip |
Add optional arguments in /help quit
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-command.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 09a020ad3..10da86621 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -4259,7 +4259,10 @@ command_init () &command_proxy, NULL); hook_command (NULL, "quit", N_("quit WeeChat"), - "", "", + N_("[arguments]"), + N_("arguments: text sent with signal \"quit\"\n" + " (for example irc plugin uses this text to " + "send quit message to server)"), "", &command_quit, NULL); hook_command (NULL, "reload", |