[BACK]Return to server.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/server.c between version 1.57 and 1.58

version 1.57, 2009/10/12 09:16:59 version 1.58, 2009/10/12 09:29:58
Line 1054 
Line 1054 
   
         status = options_get_number(oo, "status");          status = options_get_number(oo, "status");
         if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)          if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)
                 tty_cursor(&c->tty, 0, 0, 0, 0);                  tty_cursor(&c->tty, 0, 0);
         else          else
                 tty_cursor(&c->tty, s->cx, s->cy, wp->xoff, wp->yoff);                  tty_cursor(&c->tty, wp->xoff + s->cx, wp->yoff + s->cy);
   
         mode = s->mode;          mode = s->mode;
         if (TAILQ_NEXT(TAILQ_FIRST(&w->panes), entry) != NULL &&          if (TAILQ_NEXT(TAILQ_FIRST(&w->panes), entry) != NULL &&

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.58