diff options
author | LemonBoy <thatlemon@gmail.com> | 2016-06-13 20:27:37 +0200 |
---|---|---|
committer | LemonBoy <thatlemon@gmail.com> | 2016-06-13 20:27:37 +0200 |
commit | 5c8423a08cd9ffbe3363f3b0e5722e4a32157914 (patch) | |
tree | 617cf6da67d7ed18d35193bfd2787bef9197660c | |
parent | 439e21f12746519d36e205a3ac053c882d67c024 (diff) | |
download | irssi-5c8423a08cd9ffbe3363f3b0e5722e4a32157914.zip |
Add a space after the comma when listing the options.
-rw-r--r-- | src/fe-common/core/fe-settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-settings.c b/src/fe-common/core/fe-settings.c index 6f69d930..abbd45a8 100644 --- a/src/fe-common/core/fe-settings.c +++ b/src/fe-common/core/fe-settings.c @@ -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); |