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

Diff for /src/usr.bin/tmux/screen.c between version 1.69 and 1.70

version 1.69, 2021/01/26 09:32:52 version 1.70, 2021/03/12 08:39:17
Line 154 
Line 154 
 void  void
 screen_set_cursor_style(struct screen *s, u_int style)  screen_set_cursor_style(struct screen *s, u_int style)
 {  {
         if (style <= 6)          if (style <= 6) {
                 s->cstyle = style;                  s->cstyle = style;
                   s->mode &= ~MODE_BLINKING;
           }
 }  }
   
 /* Set screen cursor colour. */  /* Set screen cursor colour. */

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70