mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Give each client a name. This defaults to the tty name as before but
falls back to an alternative if the tty name is not available. This is clearer than overloading the client ttyname member and allows us to remove the path stored in the tty struct, it should always be the same as the client.
This commit is contained in:
@ -423,7 +423,7 @@ screen_redraw_pane(struct client *c, struct window_pane *wp)
|
||||
if (status_at_line(c) == 0)
|
||||
yoff++;
|
||||
|
||||
log_debug("%s: redraw pane %%%u (at %u,%u)", c->tty.path, wp->id,
|
||||
log_debug("%s: redraw pane %%%u (at %u,%u)", c->name, wp->id,
|
||||
wp->xoff, yoff);
|
||||
|
||||
for (i = 0; i < wp->sy; i++)
|
||||
|
Reference in New Issue
Block a user