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

Diff for /src/usr.bin/tmux/grid.c between version 1.30 and 1.31

version 1.30, 2013/10/10 11:49:29 version 1.31, 2013/10/10 12:01:14
Line 268 
Line 268 
   
 /* Set cell at relative position. */  /* Set cell at relative position. */
 void  void
 grid_set_cell(  grid_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)
     struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)  
 {  {
         if (grid_check_y(gd, py) != 0)          if (grid_check_y(gd, py) != 0)
                 return;                  return;
Line 657 
Line 656 
  * available.   * available.
  */   */
 void  void
 grid_duplicate_lines(  grid_duplicate_lines(struct grid *dst, u_int dy, struct grid *src, u_int sy,
     struct grid *dst, u_int dy, struct grid *src, u_int sy, u_int ny)      u_int ny)
 {  {
         struct grid_line        *dstl, *srcl;          struct grid_line        *dstl, *srcl;
         u_int                    yy;          u_int                    yy;

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31