Change window name on \ek...\e\.

This commit is contained in:
Nicholas Marriott
2007-11-30 11:08:35 +00:00
parent 77386db04b
commit 3962c5f706
6 changed files with 251 additions and 105 deletions

View File

@ -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);