mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-17 09:01:34 +02:00
Change window name on \ek...\e\.
This commit is contained in:
5
screen.c
5
screen.c
@ -1,4 +1,4 @@
|
||||
/* $Id: screen.c,v 1.53 2007-11-28 08:20:41 nicm Exp $ */
|
||||
/* $Id: screen.c,v 1.54 2007-11-30 11:08:35 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -97,7 +97,7 @@ screen_create(struct screen *s, u_int dx, u_int dy)
|
||||
s->colr = SCREEN_DEFCOLR;
|
||||
|
||||
s->mode = MODE_CURSOR;
|
||||
*s->title = '\0';
|
||||
s->title = xstrdup("");
|
||||
|
||||
s->grid_data = xmalloc(dy * (sizeof *s->grid_data));
|
||||
s->grid_attr = xmalloc(dy * (sizeof *s->grid_attr));
|
||||
@ -260,6 +260,7 @@ screen_set_cell(struct screen *s,
|
||||
void
|
||||
screen_destroy(struct screen *s)
|
||||
{
|
||||
xfree(s->title);
|
||||
screen_free_lines(s, 0, s->dy + s->hsize);
|
||||
xfree(s->grid_data);
|
||||
xfree(s->grid_attr);
|
||||
|
Reference in New Issue
Block a user