summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-12-24 00:06:13 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-12-24 00:06:13 +0100
commitcc80730de7dfaf5deda7ffe38cf8db91b6e54f22 (patch)
tree92ecc4914885adfa8b44a6ef0f4aabc268725a21 /src
parent5afdf63fa37ed60f739023dd5a83630adc0603e5 (diff)
downloadweechat-cc80730de7dfaf5deda7ffe38cf8db91b6e54f22.zip
irc: fix typo in /help irc.look.highlight_{channel|pv|server}
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-config.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c
index 494db8184..d13786b6c 100644
--- a/src/plugins/irc/irc-config.c
+++ b/src/plugins/irc/irc-config.c
@@ -2315,10 +2315,9 @@ irc_config_init ()
"(case insensitive, use \"(?-i)\" at beginning of words to "
"make them case sensitive; special variables $nick, $channel and "
"$server are replaced by their value), these words are added to "
- "buffer local variable \"highlight_words\" only when buffer is "
- "created (it does not affect current buffers), an empty string "
- "disables default highlight on nick, examples: \"$nick\", "
- "\"(?-i)$nick\""),
+ "buffer property \"highlight_words\" only when buffer is created "
+ "(it does not affect current buffers), an empty string disables "
+ "default highlight on nick, examples: \"$nick\", \"(?-i)$nick\""),
NULL, 0, 0, "$nick", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
irc_config_look_highlight_channel = weechat_config_new_option (
irc_config_file, ptr_section,
@@ -2327,10 +2326,9 @@ irc_config_init ()
"(case insensitive, use \"(?-i)\" at beginning of words to "
"make them case sensitive; special variables $nick, $channel and "
"$server are replaced by their value), these words are added to "
- "buffer local variable \"highlight_words\" only when buffer is "
- "created (it does not affect current buffers), an empty string "
- "disables default highlight on nick, examples: \"$nick\", "
- "\"(?-i)$nick\""),
+ "buffer property \"highlight_words\" only when buffer is created "
+ "(it does not affect current buffers), an empty string disables "
+ "default highlight on nick, examples: \"$nick\", \"(?-i)$nick\""),
NULL, 0, 0, "$nick", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
irc_config_look_highlight_pv = weechat_config_new_option (
irc_config_file, ptr_section,
@@ -2339,10 +2337,9 @@ irc_config_init ()
"(case insensitive, use \"(?-i)\" at beginning of words to "
"make them case sensitive; special variables $nick, $channel and "
"$server are replaced by their value), these words are added to "
- "buffer local variable \"highlight_words\" only when buffer is "
- "created (it does not affect current buffers), an empty string "
- "disables default highlight on nick, examples: \"$nick\", "
- "\"(?-i)$nick\""),
+ "buffer property \"highlight_words\" only when buffer is created "
+ "(it does not affect current buffers), an empty string disables "
+ "default highlight on nick, examples: \"$nick\", \"(?-i)$nick\""),
NULL, 0, 0, "$nick", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
irc_config_look_highlight_tags_restrict = weechat_config_new_option (
irc_config_file, ptr_section,