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

Diff for /src/usr.bin/tmux/tty.c between version 1.304 and 1.305

version 1.304, 2018/08/18 16:14:03 version 1.305, 2018/08/19 16:45:03
Line 179 
Line 179 
   
         log_debug("%s: %zu discarded", c->name, tty->discarded);          log_debug("%s: %zu discarded", c->name, tty->discarded);
   
         c->flags |= CLIENT_REDRAW;          c->flags |= CLIENT_ALLREDRAWFLAGS;
         c->discarded += tty->discarded;          c->discarded += tty->discarded;
   
         if (tty->discarded < TTY_BLOCK_STOP(tty)) {          if (tty->discarded < TTY_BLOCK_STOP(tty)) {
Line 1049 
Line 1049 
 {  {
         if (c->session == NULL || c->tty.term == NULL)          if (c->session == NULL || c->tty.term == NULL)
                 return (0);                  return (0);
         if (c->flags & (CLIENT_REDRAW|CLIENT_SUSPENDED))          if (c->flags & (CLIENT_REDRAWWINDOW|CLIENT_SUSPENDED))
                 return (0);                  return (0);
         if (c->tty.flags & TTY_FREEZE)          if (c->tty.flags & TTY_FREEZE)
                 return (0);                  return (0);

Legend:
Removed from v.1.304  
changed lines
  Added in v.1.305