[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.81 and 1.82

version 1.81, 2018/04/18 14:31:42 version 1.82, 2018/06/03 10:17:30
Line 1011 
Line 1011 
                  * If this is now the last line, there is nothing more to be                   * If this is now the last line, there is nothing more to be
                  * done.                   * done.
                  */                   */
                 if (yy + lines == gd->hsize + gd->sy)                  if (yy + 1 + lines == gd->hsize + gd->sy)
                         break;                          break;
                 line = yy + 1 + lines;                  line = yy + 1 + lines;
   
Line 1021 
Line 1021 
                 if (gd->linedata[line].cellused == 0) {                  if (gd->linedata[line].cellused == 0) {
                         if (!wrapped)                          if (!wrapped)
                                 break;                                  break;
                           lines++;
                         continue;                          continue;
                 }                  }
   

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82