about summary refs log tree commit diff stats
path: root/src/otr
diff options
context:
space:
mode:
authorMartin Dosch <martin@mdosch.de>2023-04-09 12:19:18 +0200
committerMartin Dosch <martin@mdosch.de>2023-04-09 12:19:18 +0200
commite1ffc64a653033cc3f6c1e4d412a24985c8c45a0 (patch)
tree14981e6daaff41e57560c957f51984c9f5d2500b /src/otr
parentac581c29bfa7c31fbfb6fe8019d257d3883b33bb (diff)
downloadprofani-tty-e1ffc64a653033cc3f6c1e4d412a24985c8c45a0.tar.gz
User proper ellipsis char
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 "…".
Diffstat (limited to 'src/otr')
-rw-r--r--src/otr/otr.c4
1 files changed, 2 insertions, 2 deletions
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);
     }