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

Diff for /src/usr.bin/tmux/cmd-find.c between version 1.59 and 1.60

version 1.59, 2018/01/15 15:30:03 version 1.60, 2018/03/17 16:48:17
Line 390 
Line 390 
                                         return (-1);                                          return (-1);
                                 fs->idx = s->curw->idx + n;                                  fs->idx = s->curw->idx + n;
                         } else {                          } else {
                                 if (n < s->curw->idx)                                  if (n > s->curw->idx)
                                         return (-1);                                          return (-1);
                                 fs->idx = s->curw->idx - n;                                  fs->idx = s->curw->idx - n;
                         }                          }

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60