Remove some duplicate code that was causing the status line to be redrawn even

when it hadn't changed.
pull/1/head
Nicholas Marriott 2009-07-16 23:25:21 +00:00
parent 3e9d9a2119
commit 9642f0373f
1 changed files with 0 additions and 4 deletions

View File

@ -62,10 +62,6 @@ status_redraw(struct client *c)
memcpy(&old_status, &c->status, sizeof old_status);
screen_init(&c->status, c->tty.sx, 1, 0);
/* Create the target screen. */
memcpy(&old_status, &c->status, sizeof old_status);
screen_init(&c->status, c->tty.sx, 1, 0);
if (gettimeofday(&c->status_timer, NULL) != 0)
fatal("gettimeofday");
memcpy(&stdgc, &grid_default_cell, sizeof gc);