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

Diff for /src/usr.bin/tmux/input.c between version 1.160 and 1.161

version 1.160, 2019/09/24 20:44:58 version 1.161, 2019/09/25 19:05:59
Line 923 
Line 923 
                     ictx->ch > itr->last) {                      ictx->ch > itr->last) {
                         itr = ictx->state->transitions;                          itr = ictx->state->transitions;
                         while (itr->first != -1 && itr->last != -1) {                          while (itr->first != -1 && itr->last != -1) {
                                 if (ictx->ch >= itr->first && ictx->ch <= itr->last)                                  if (ictx->ch >= itr->first &&
                                       ictx->ch <= itr->last)
                                         break;                                          break;
                                 itr++;                                  itr++;
                         }                          }

Legend:
Removed from v.1.160  
changed lines
  Added in v.1.161