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:
parent
439e21f127
commit
5c8423a08c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user