mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +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)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue