diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-03-16 11:49:58 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-03-16 11:49:58 +0000 |
commit | aa149dcfbc209a1addf40fdcfb826105d1940fbd (patch) | |
tree | 6bc2edc11c82d6b723fa3ed9f797a22543128ad2 /src/irc | |
parent | 4d64128ef2d755f369e5feb1ab3029305df41be2 (diff) | |
download | weechat-aa149dcfbc209a1addf40fdcfb826105d1940fbd.zip |
Fixed /topic completion when no topic set on current channel (bug #19322)
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/irc-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/irc-commands.c b/src/irc/irc-commands.c index 30ad1e83c..51e9e542a 100644 --- a/src/irc/irc-commands.c +++ b/src/irc/irc-commands.c @@ -258,7 +258,7 @@ t_irc_command irc_commands[] = N_("[channel] [topic]"), N_("channel: channel name\ntopic: new topic for channel " "(if topic is \"-delete\" then topic is deleted)"), - "%t|-delete", 0, MAX_ARGS, 1, 1, NULL, irc_cmd_send_topic, irc_cmd_recv_topic }, + "%t|-delete %-", 0, MAX_ARGS, 1, 1, NULL, irc_cmd_send_topic, irc_cmd_recv_topic }, { "trace", N_("find the route to specific server"), N_("[target]"), N_("target: server"), |