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

Diff for /src/usr.bin/tmux/window.c between version 1.188 and 1.189

version 1.188, 2017/04/20 09:39:07 version 1.189, 2017/04/20 09:43:45
Line 709 
Line 709 
         }          }
 }  }
   
 /* Retuns the printable flags on a window, empty string if no flags set. */  
 const char *  const char *
 window_printable_flags(struct session *s, struct winlink *wl)  window_printable_flags(struct winlink *wl)
 {  {
         static char     flags[32];          struct session  *s = wl->session;
         int             pos;          static char      flags[32];
           int              pos;
   
         pos = 0;          pos = 0;
         if (wl->flags & WINLINK_ACTIVITY)          if (wl->flags & WINLINK_ACTIVITY)

Legend:
Removed from v.1.188  
changed lines
  Added in v.1.189