1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 06:16:40 +02:00

irc: fix typo in /help irc.look.highlight_{channel|pv|server}

This commit is contained in:
Sebastien Helleu
2013-12-24 00:06:13 +01:00
parent 5afdf63fa3
commit cc80730de7
19 changed files with 223 additions and 211 deletions
+9 -12
View File
@@ -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,