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/otr/otr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/otr') diff --git a/src/otr/otr.c b/src/otr/otr.c index bbad51d5..857baa13 100644 --- a/src/otr/otr.c +++ b/src/otr/otr.c @@ -304,7 +304,7 @@ otr_on_message_recv(const char* const barejid, const char* const resource, const } memmove(whitespace_base, whitespace_base + tag_length, tag_length); char* otr_query_message = otr_start_query(); - cons_show("OTR Whitespace pattern detected. Attempting to start OTR session..."); + cons_show("OTR Whitespace pattern detected. Attempting to start OTR session…"); char* id = message_send_chat_otr(barejid, otr_query_message, FALSE, NULL); free(id); } @@ -318,7 +318,7 @@ otr_on_message_recv(const char* const barejid, const char* const resource, const if (policy == PROF_OTRPOLICY_ALWAYS && *decrypted == FALSE && !whitespace_base) { char* otr_query_message = otr_start_query(); - cons_show("Attempting to start OTR session..."); + cons_show("Attempting to start OTR session…"); char* id = message_send_chat_otr(barejid, otr_query_message, FALSE, NULL); free(id); } -- cgit 1.4.1-2-gfad0 &id=37d53a70958bfe5b1d7946229af9c12f0b865abc'>diff stats
path: root/x.mu
blob: f53a86ba6d7244e3f541aa469fc46d41f1d69c43 (plain) (tree)
1
2
3
4
5
6
7
8