mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Add a space after the comma when listing the options.
This commit is contained in:
parent
439e21f127
commit
5c8423a08c
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue