mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 04:13:32 +02:00
Use ; as separator instead of ,
This commit is contained in:
parent
9a30ab53df
commit
439e21f127
2 changed files with 2 additions and 2 deletions
|
|
@ -210,7 +210,7 @@ static void settings_add(const char *module, const char *section,
|
|||
return;
|
||||
}
|
||||
|
||||
choices_vec = g_strsplit(choices, ",", -1);
|
||||
choices_vec = g_strsplit(choices, ";", -1);
|
||||
|
||||
/* validate the default value */
|
||||
if (default_value->v_int < 0 || default_value->v_int >= g_strv_length(choices_vec)) {
|
||||
|
|
|
|||
|
|
@ -1017,7 +1017,7 @@ void irc_server_init_isupport(IRC_SERVER_REC *server)
|
|||
|
||||
void irc_servers_init(void)
|
||||
{
|
||||
settings_add_choice("servers", "rejoin_channels_on_reconnect", 1, "off,on,auto");
|
||||
settings_add_choice("servers", "rejoin_channels_on_reconnect", 1, "off;on;auto");
|
||||
settings_add_str("misc", "usermode", DEFAULT_USER_MODE);
|
||||
settings_add_str("misc", "split_line_start", "");
|
||||
settings_add_str("misc", "split_line_end", "");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue