about summary refs log tree commit diff stats
path: root/src/profanity.c
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/profanity.c
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/profanity.c')
-rw-r--r--src/profanity.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profanity.c b/src/profanity.c
index 869ab561..2c6ad12d 100644
--- a/src/profanity.c
+++ b/src/profanity.c
@@ -183,12 +183,12 @@ _init(char* log_level, char* config_file, char* log_file, char* theme_name)
 
     if (strcmp(PACKAGE_STATUS, "development") == 0) {
 #ifdef HAVE_GIT_VERSION
-        log_info("Starting Profanity (%sdev.%s.%s)...", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
+        log_info("Starting Profanity (%sdev.%s.%s)…", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
 #else
-        log_info("Starting Profanity (%sdev)...", PACKAGE_VERSION);
+        log_info("Starting Profanity (%sdev)…", PACKAGE_VERSION);
 #endif
     } else {
-        log_info("Starting Profanity (%s)...", PACKAGE_VERSION);
+        log_info("Starting Profanity (%s)…", PACKAGE_VERSION);
     }
 
     chat_log_init();