mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -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) {
|
if (settings_set_choice(key, stripped_value) == FALSE) {
|
||||||
SETTINGS_REC *rec = settings_get_record(key);
|
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);
|
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR, TXT_INVALID_CHOICE, msg);
|
||||||
g_free(msg);
|
g_free(msg);
|
||||||
|
Loading…
Reference in New Issue
Block a user