Allow utf8 symbols as omemo/pgp/otr indicator char

Fix https://github.com/profanity-im/profanity/issues/1264
This commit is contained in:
Michael Vetter
2020-02-20 18:11:08 +01:00
parent 280b718cfb
commit 1f8b1eb740
21 changed files with 643 additions and 622 deletions

View File

@@ -532,7 +532,7 @@ void win_show_subwin(ProfWin *window) {}
void win_refresh_without_subwin(ProfWin *window) {}
void win_refresh_with_subwin(ProfWin *window) {}
void win_println(ProfWin *window, theme_item_t theme, const char ch, const char *const message, ...)
void win_println(ProfWin *window, theme_item_t theme, const char *ch, const char *const message, ...)
{
va_list args;
va_start(args, message);
@@ -541,7 +541,7 @@ void win_println(ProfWin *window, theme_item_t theme, const char ch, const char
va_end(args);
}
void win_print(ProfWin *window, theme_item_t theme_item, const char ch, const char *const message, ...) {}
void win_print(ProfWin *window, theme_item_t theme_item, const char *ch, const char *const message, ...) {}
void win_appendln(ProfWin *window, theme_item_t theme_item, const char *const message, ...) {}
char* win_get_title(ProfWin *window)