1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Add a space after the comma when listing the options.

This commit is contained in:
LemonBoy 2016-06-13 20:27:37 +02:00
parent 439e21f127
commit 5c8423a08c

View File

@ -109,7 +109,7 @@ static void set_choice(const char *key, const char *value)
if (settings_set_choice(key, stripped_value) == FALSE) {
SETTINGS_REC *rec = settings_get_record(key);
char *msg = g_strjoinv(",", rec->choices);
char *msg = g_strjoinv(", ", rec->choices);
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR, TXT_INVALID_CHOICE, msg);
g_free(msg);