=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/window.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- src/usr.bin/tmux/window.c 2009/11/26 21:37:13 1.41 +++ src/usr.bin/tmux/window.c 2009/12/03 22:50:10 1.42 @@ -1,4 +1,4 @@ -/* $OpenBSD: window.c,v 1.41 2009/11/26 21:37:13 nicm Exp $ */ +/* $OpenBSD: window.c,v 1.42 2009/12/03 22:50:10 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -189,7 +189,7 @@ if (wl == NULL) return; - + TAILQ_FOREACH(wl2, stack, sentry) { if (wl2 == wl) { TAILQ_REMOVE(stack, wl, sentry); @@ -223,7 +223,7 @@ w->lastlayout = -1; w->layout_root = NULL; - + w->sx = sx; w->sy = sy; @@ -428,7 +428,7 @@ wp->layout_cell = NULL; wp->xoff = 0; - wp->yoff = 0; + wp->yoff = 0; wp->sx = sx; wp->sy = sy; @@ -513,7 +513,7 @@ ws.ws_col = screen_size_x(&wp->base); ws.ws_row = screen_size_y(&wp->base); - switch (wp->pid = forkpty(&wp->fd, wp->tty, NULL, &ws)) { + switch (wp->pid = forkpty(&wp->fd, wp->tty, NULL, &ws)) { case -1: wp->fd = -1; xasprintf(cause, "%s: %s", cmd, strerror(errno)); @@ -665,7 +665,7 @@ data = EVBUFFER_DATA(wp->event->input); bufferevent_write(wp->pipe_event, data, new_size); } - + input_parse(wp); wp->pipe_off = EVBUFFER_LENGTH(wp->event->input);