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

Diff for /src/usr.bin/tmux/tty.c between version 1.46 and 1.47

version 1.46, 2009/10/12 17:19:47 version 1.47, 2009/10/13 00:44:16
Line 461 
Line 461 
         gl = NULL;          gl = NULL;
         if (py != 0)          if (py != 0)
                 gl = &s->grid->linedata[s->grid->hsize + py - 1];                  gl = &s->grid->linedata[s->grid->hsize + py - 1];
         if (ox != 0 || (gl != NULL && !(gl->flags & GRID_LINE_WRAPPED)) ||          if (oy + py == 0 || (gl != NULL && !(gl->flags & GRID_LINE_WRAPPED)) ||
             tty->cy != oy + py - 1 || tty->cx < tty->sx)              tty->cx < tty->sx || ox != 0 ||
               (oy + py != tty->cy + 1 && tty->cy != s->rlower + oy))
                 tty_cursor(tty, ox, oy + py);                  tty_cursor(tty, ox, oy + py);
   
         for (i = 0; i < sx; i++) {          for (i = 0; i < sx; i++) {

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47