summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/wee-command.c7
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);
}
}