[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.55 and 1.56

version 1.55, 2019/04/02 08:45:32 version 1.56, 2019/11/15 11:16:53
Line 159 
Line 159 
         utf8_stravis(&s->title, title, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);          utf8_stravis(&s->title, title, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
 }  }
   
   /* Set screen path. */
   void
   screen_set_path(struct screen *s, const char *path)
   {
           free(s->path);
           utf8_stravis(&s->path, path, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
   }
   
 /* Push the current title onto the stack. */  /* Push the current title onto the stack. */
 void  void
 screen_push_title(struct screen *s)  screen_push_title(struct screen *s)

Legend:
Removed from v.1.55  
changed lines
  Added in v.1.56