[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.16 and 1.17

version 1.16, 2009/08/07 15:39:10 version 1.17, 2009/08/10 19:42:03
Line 866 
Line 866 
   
         /* Ensure cursor position and mode settings. */          /* Ensure cursor position and mode settings. */
         status = options_get_number(&c->session->options, "status");          status = options_get_number(&c->session->options, "status");
           tty_region(&c->tty, 0, c->tty.sy - 1, 0);
         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, 0, 0);
         else          else

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17