From 3af6f8a20ad8950f09b8ff261e3d1815162247b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 4 Jul 2026 12:06:17 +0200 Subject: [PATCH] core: remove spaces in output of /theme info --- src/core/core-command.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/core/core-command.c b/src/core/core-command.c index 519fcdad4..3bddb920c 100644 --- a/src/core/core-command.c +++ b/src/core/core-command.c @@ -7397,25 +7397,25 @@ COMMAND_CALLBACK(theme) if (path) { gui_chat_printf (NULL, - _(" source : %s"), path); + _(" source: %s"), path); } else { gui_chat_printf (NULL, - _(" source : built-in (in-memory)")); + _(" source: built-in (in-memory)")); } gui_chat_printf (NULL, - _(" description : %s"), + _(" description: %s"), (ptr_theme->description) ? ptr_theme->description : ""); gui_chat_printf (NULL, - _(" date : %s"), + _(" date: %s"), (ptr_theme->date) ? ptr_theme->date : ""); gui_chat_printf (NULL, _(" WeeChat version: %s"), (ptr_theme->weechat_version) ? ptr_theme->weechat_version : ""); gui_chat_printf (NULL, - _(" overrides : %d"), + _(" overrides: %d"), theme_overrides_count (ptr_theme)); free (path); theme_free (file_theme);