1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

exec: remove trailing space on buffers with free content when line numbers are not displayed

This commit is contained in:
Sébastien Helleu
2024-03-08 08:19:20 +01:00
parent a6c509611a
commit 431cf23a0c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -35,6 +35,7 @@ Bug fixes::
* core: add missing mouse events "alt-ctrl-button2" and "alt-ctrl-button3"
* core: remove trailing directory separators in home directories (issue #2070)
* exec: remove trailing space on buffers with free content when line numbers are not displayed
* exec: add missing exec tags in lines of buffers with free content (issue #2086)
* fset: allow filename starting with "~" in command `/fset -export`
* irc: add missing tags on self action messages when capability echo-message is enabled (issue #2074)
+1 -1
View File
@@ -353,7 +353,7 @@ exec_display_line (struct t_exec_cmd *exec_cmd, struct t_gui_buffer *buffer,
weechat_printf_y_date_tags (
buffer, -1, 0, str_tags,
"%s%s",
(exec_cmd->line_numbers) ? str_number : " ",
(exec_cmd->line_numbers) ? str_number : "",
line_color);
}
else