[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.96 and 1.97

version 1.96, 2013/03/21 16:13:24 version 1.97, 2013/03/21 16:14:09
Line 437 
Line 437 
         case 'P':          case 'P':
                 if (window_pane_index(wp, &idx) != 0)                  if (window_pane_index(wp, &idx) != 0)
                         fatalx("index not found");                          fatalx("index not found");
                 xsnprintf(                  xsnprintf(tmp, sizeof tmp, "%u", idx);
                     tmp, sizeof tmp, "%u", idx);  
                 ptr = tmp;                  ptr = tmp;
                 goto do_replace;                  goto do_replace;
         case 'S':          case 'S':
Line 539 
Line 538 
         *optr = '\0';          *optr = '\0';
   
         ft = format_create();          ft = format_create();
           format_client(ft, c);
         format_session(ft, s);          format_session(ft, s);
         format_winlink(ft, s, wl);          format_winlink(ft, s, wl);
         format_window_pane(ft, wp);          format_window_pane(ft, wp);

Legend:
Removed from v.1.96  
changed lines
  Added in v.1.97