[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.184 and 1.185

version 1.184, 2020/10/29 16:33:01 version 1.185, 2020/10/30 11:34:13
Line 1545 
Line 1545 
                 if (n == -1)                  if (n == -1)
                         break;                          break;
   
                   m = screen_size_x(s) - s->cx;
                   if (n > m)
                           n = m;
   
                 if (ictx->last == -1)                  if (ictx->last == -1)
                         break;                          break;
                 ictx->ch = ictx->last;                  ictx->ch = ictx->last;

Legend:
Removed from v.1.184  
changed lines
  Added in v.1.185