diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-10-06 07:10:36 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-10-06 07:10:36 +0200 |
commit | 5173e19ff3872d707c52108ee071fdb564843bf0 (patch) | |
tree | 13d3ca230bf8da997ff6c4017b7ca1855d87f65f /src | |
parent | e688fa4daaf48dec2b5d207bf2abe3b4135caa31 (diff) | |
download | weechat-5173e19ff3872d707c52108ee071fdb564843bf0.zip |
core: fix style
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-command.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 780accff5..a24f131d0 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -1106,14 +1106,17 @@ COMMAND_CALLBACK(buffer) && (ptr_buffer->local_variables->items_count > 0)) { gui_chat_printf (NULL, ""); - gui_chat_printf (NULL, _ ("Local variables for buffer \"%s\":"), + gui_chat_printf (NULL, + _("Local variables for buffer \"%s\":"), ptr_buffer->name); hashtable_map (ptr_buffer->local_variables, &command_buffer_display_localvar, NULL); } else { - gui_chat_printf (NULL, _ ("No local variable defined for buffer \"%s\""), + gui_chat_printf (NULL, + _("No local variable defined for buffer " + "\"%s\""), ptr_buffer->name); } } |