mirror of
https://github.com/weechat/weechat.git
synced 2026-07-01 23:36:37 +02:00
core: display full buffer name in output of command /buffer listvar
This commit is contained in:
@@ -1300,7 +1300,7 @@ COMMAND_CALLBACK(buffer)
|
||||
gui_chat_printf (NULL, "");
|
||||
gui_chat_printf (NULL,
|
||||
_("Local variables for buffer \"%s\":"),
|
||||
ptr_buffer->name);
|
||||
ptr_buffer->full_name);
|
||||
hashtable_map (ptr_buffer->local_variables,
|
||||
&command_buffer_display_localvar, NULL);
|
||||
}
|
||||
@@ -1308,7 +1308,7 @@ COMMAND_CALLBACK(buffer)
|
||||
{
|
||||
gui_chat_printf (NULL,
|
||||
_("No local variable defined for buffer \"%s\""),
|
||||
ptr_buffer->name);
|
||||
ptr_buffer->full_name);
|
||||
}
|
||||
return WEECHAT_RC_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user