[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.417 and 1.418

version 1.417, 2022/03/08 12:01:19 version 1.418, 2022/03/24 09:05:57
Line 655 
Line 655 
         tty_putcode(tty, TTYC_FSL);          tty_putcode(tty, TTYC_FSL);
 }  }
   
   void
   tty_set_path(struct tty *tty, const char *title)
   {
           if (!tty_term_has(tty->term, TTYC_SWD) ||
               !tty_term_has(tty->term, TTYC_FSL))
                   return;
   
           tty_putcode(tty, TTYC_SWD);
           tty_puts(tty, title);
           tty_putcode(tty, TTYC_FSL);
   }
   
 static void  static void
 tty_force_cursor_colour(struct tty *tty, int c)  tty_force_cursor_colour(struct tty *tty, int c)
 {  {

Legend:
Removed from v.1.417  
changed lines
  Added in v.1.418