[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.307 and 1.308

version 1.307, 2018/09/25 14:27:20 version 1.308, 2018/10/18 07:57:57
Line 1832 
Line 1832 
                 tty_putcode(tty, TTYC_DIM);                  tty_putcode(tty, TTYC_DIM);
         if (changed & GRID_ATTR_ITALICS)          if (changed & GRID_ATTR_ITALICS)
                 tty_set_italics(tty);                  tty_set_italics(tty);
         if (changed & GRID_ATTR_UNDERSCORE)          if (changed & GRID_ATTR_ALL_UNDERSCORE) {
                 tty_putcode(tty, TTYC_SMUL);                  if ((changed & GRID_ATTR_UNDERSCORE) ||
                       !tty_term_has(tty->term, TTYC_SMULX))
                           tty_putcode(tty, TTYC_SMUL);
                   else if (changed & GRID_ATTR_UNDERSCORE_2)
                           tty_putcode1(tty, TTYC_SMULX, 2);
                   else if (changed & GRID_ATTR_UNDERSCORE_3)
                           tty_putcode1(tty, TTYC_SMULX, 3);
                   else if (changed & GRID_ATTR_UNDERSCORE_4)
                           tty_putcode1(tty, TTYC_SMULX, 4);
                   else if (changed & GRID_ATTR_UNDERSCORE_5)
                           tty_putcode1(tty, TTYC_SMULX, 5);
           }
         if (changed & GRID_ATTR_BLINK)          if (changed & GRID_ATTR_BLINK)
                 tty_putcode(tty, TTYC_BLINK);                  tty_putcode(tty, TTYC_BLINK);
         if (changed & GRID_ATTR_REVERSE) {          if (changed & GRID_ATTR_REVERSE) {

Legend:
Removed from v.1.307  
changed lines
  Added in v.1.308