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

Diff for /src/usr.bin/tmux/cmd.c between version 1.122 and 1.123

version 1.122, 2016/03/01 12:06:07 version 1.123, 2016/10/05 12:32:13
Line 601 
Line 601 
         if (y < wp->yoff || y >= wp->yoff + wp->sy)          if (y < wp->yoff || y >= wp->yoff + wp->sy)
                 return (-1);                  return (-1);
   
         *xp = x - wp->xoff;          if (xp != NULL)
         *yp = y - wp->yoff;                  *xp = x - wp->xoff;
           if (yp != NULL)
                   *yp = y - wp->yoff;
         return (0);          return (0);
 }  }
   

Legend:
Removed from v.1.122  
changed lines
  Added in v.1.123