1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

core: remove spaces in output of /theme info <theme>

This commit is contained in:
Sébastien Helleu
2026-07-04 12:06:17 +02:00
parent ecc2680273
commit 3af6f8a20a
+5 -5
View File
@@ -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);