summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-01-30 09:25:06 +0100
committerSébastien Helleu <flashcode@flashtux.org>2021-01-30 09:25:06 +0100
commitec2ffedab62443ef41d26bade5f126773bc31dc2 (patch)
tree975e6bf838d3dd5b764573c037a4038e548b28bd /src
parent293402143b9da9e6107fa5d8b28385609060d3ea (diff)
downloadweechat-ec2ffedab62443ef41d26bade5f126773bc31dc2.zip
irc: improve help on server option "default_chantypes"
Diffstat (limited to 'src')
-rw-r--r--src/plugins/irc/irc-config.c2
-rw-r--r--src/plugins/irc/irc-server.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c
index 9975bd964..50da7c3b1 100644
--- a/src/plugins/irc/irc-config.c
+++ b/src/plugins/irc/irc-config.c
@@ -2439,7 +2439,7 @@ irc_config_server_new_option (struct t_config_file *config_file,
config_file, section,
option_name, "string",
N_("channel type prefixes to use if the server does not "
- "specify them (default is #&)"),
+ "send them in message 005 (default is \"#&\")"),
NULL, 0, 0,
default_value, value,
null_value_allowed,
diff --git a/src/plugins/irc/irc-server.h b/src/plugins/irc/irc-server.h
index 946a9fa84..f62f84a1e 100644
--- a/src/plugins/irc/irc-server.h
+++ b/src/plugins/irc/irc-server.h
@@ -92,7 +92,7 @@ enum t_irc_server_option
IRC_SERVER_OPTION_NOTIFY, /* notify list */
IRC_SERVER_OPTION_SPLIT_MSG_MAX_LENGTH, /* max length of messages */
IRC_SERVER_OPTION_CHARSET_MESSAGE, /* what to decode/encode in msg */
- IRC_SERVER_OPTION_DEFAULT_CHANTYPES, /* chantypes if server doesn't say */
+ IRC_SERVER_OPTION_DEFAULT_CHANTYPES, /* chantypes if not received */
/* number of server options */
IRC_SERVER_NUM_OPTIONS,
};