From e1ffc64a653033cc3f6c1e4d412a24985c8c45a0 Mon Sep 17 00:00:00 2001 From: Martin Dosch Date: Sun, 9 Apr 2023 12:19:18 +0200 Subject: User proper ellipsis char MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As stated in https://github.com/profanity-im/profanity/pull/1820#issuecomment-1498083383 profanity uses "..." (three dots) in a lot of places instead the proper ellipsis char "…". --- src/xmpp/iq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xmpp/iq.c') diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 9fe6b061..b7beafaf 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -2596,7 +2596,7 @@ static int _mam_buffer_commit_handler(xmpp_stanza_t* const stanza, void* const userdata) { ProfChatWin* chatwin = (ProfChatWin*)userdata; - // Remove the "Loading messages ..." message + // Remove the "Loading messages …" message buffer_remove_entry(((ProfWin*)chatwin)->layout->buffer, 0); chatwin_db_history(chatwin, NULL, NULL, TRUE); return 0; -- cgit 1.4.1-2-gfad0 isanti <danisanti@tilde.institute>
about summary refs log blame commit diff stats
path: root/src/config/preferences.c
blob: 8642e20a4f48026e13673d502b1ecf8900d87e27 (plain) (tree)
1
2
3
4
5