[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.18 and 1.19

version 1.18, 2009/08/05 16:26:38 version 1.19, 2009/08/08 13:29:27
Line 486 
Line 486 
         u_int                    i, sx;          u_int                    i, sx;
   
         sx = screen_size_x(s);          sx = screen_size_x(s);
         if (sx > s->grid->size[s->grid->hsize + py])          if (sx > s->grid->linedata[s->grid->hsize + py].cellsize)
                 sx = s->grid->size[s->grid->hsize + py];                  sx = s->grid->linedata[s->grid->hsize + py].cellsize;
         if (sx > tty->sx)          if (sx > tty->sx)
                 sx = tty->sx;                  sx = tty->sx;
   

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19