diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-30 18:43:40 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-30 18:43:40 +0100 |
commit | e1e0e83eb2923406d5ba3e8e4389e9fe8d7771b7 (patch) | |
tree | 69cc376407e5c6d0ccfb7a407fe044c84bb62c5f | |
parent | 6f65f647f8fbe8a1d45b0bd6779d7c3bff91ba88 (diff) | |
download | weechat-e1e0e83eb2923406d5ba3e8e4389e9fe8d7771b7.zip |
Fix default value for option irc.look.highlight_tags
-rw-r--r-- | src/plugins/irc/irc-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index e21874931..823e0ef77 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -987,7 +987,7 @@ irc_config_init () N_("comma separated list of tags for messages that may produce " "highlight (usually any message from another user, not server " "messages,..)"), - NULL, 0, 0, "irc_privmsg,irc_notice", NULL, NULL, NULL, NULL, NULL, NULL, NULL); + NULL, 0, 0, "irc_cmd_privmsg,irc_cmd_notice", NULL, NULL, NULL, NULL, NULL, NULL, NULL); irc_config_look_show_away_once = weechat_config_new_option ( irc_config_file, ptr_section, "show_away_once", "boolean", |