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

Diff for /src/usr.bin/tmux/status.c between version 1.66 and 1.67

version 1.66, 2010/12/11 16:13:15 version 1.67, 2010/12/30 21:35:17
Line 393 
Line 393 
                 ptr = wl->window->name;                  ptr = wl->window->name;
                 goto do_replace;                  goto do_replace;
         case 'F':          case 'F':
                 tmp[0] = ' ';                  ptr = window_printable_flags(s, wl);
                 if (wl->flags & WINLINK_CONTENT)                  freeptr = ptr;
                         tmp[0] = '+';  
                 else if (wl->flags & WINLINK_BELL)  
                         tmp[0] = '!';  
                 else if (wl->flags & WINLINK_ACTIVITY)  
                         tmp[0] = '#';  
                 else if (wl->flags & WINLINK_SILENCE)  
                         tmp[0] = '~';  
                 else if (wl == s->curw)  
                         tmp[0] = '*';  
                 else if (wl == TAILQ_FIRST(&s->lastw))  
                         tmp[0] = '-';  
                 tmp[1] = '\0';  
                 ptr = tmp;  
                 goto do_replace;                  goto do_replace;
         case '[':          case '[':
                 /*                  /*

Legend:
Removed from v.1.66  
changed lines
  Added in v.1.67