diff options
author | LemonBoy <thatlemon@gmail.com> | 2016-06-13 14:07:04 +0200 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2016-06-13 14:07:04 +0200 |
commit | 439e21f12746519d36e205a3ac053c882d67c024 (patch) | |
tree | 4377fbb71692e9b47a0061719291f6b215216a85 /src/core | |
parent | 9a30ab53df226acb4586a2f214f3994a7b8b32ea (diff) | |
download | irssi-439e21f12746519d36e205a3ac053c882d67c024.zip |
Use ; as separator instead of ,
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/settings.c b/src/core/settings.c index 0716103a..e6b5d16f 100644 --- a/src/core/settings.c +++ b/src/core/settings.c @@ -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)) { |