[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.254 and 1.255

version 1.254, 2017/03/15 15:22:14 version 1.255, 2017/03/22 07:16:54
Line 1557 
Line 1557 
     const struct window_pane *wp)      const struct window_pane *wp)
 {  {
         struct grid_cell        *tc = &tty->cell, gc2;          struct grid_cell        *tc = &tty->cell, gc2;
         u_char                   changed;          int                      changed;
   
         /* Ignore cell if it is the same as the last one. */          /* Ignore cell if it is the same as the last one. */
         if (wp != NULL &&          if (wp != NULL &&
Line 1627 
Line 1627 
         }          }
         if (changed & GRID_ATTR_HIDDEN)          if (changed & GRID_ATTR_HIDDEN)
                 tty_putcode(tty, TTYC_INVIS);                  tty_putcode(tty, TTYC_INVIS);
           if (changed & GRID_ATTR_STRIKETHROUGH)
                   tty_putcode(tty, TTYC_SMXX);
         if ((changed & GRID_ATTR_CHARSET) && tty_use_acs(tty))          if ((changed & GRID_ATTR_CHARSET) && tty_use_acs(tty))
                 tty_putcode(tty, TTYC_SMACS);                  tty_putcode(tty, TTYC_SMACS);
 }  }

Legend:
Removed from v.1.254  
changed lines
  Added in v.1.255