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

Diff for /src/usr.bin/tmux/format.c between version 1.142 and 1.143

version 1.142, 2017/05/31 17:56:48 version 1.143, 2017/07/07 14:39:45
Line 1393 
Line 1393 
         format_add(ft, "pane_id", "%%%u", wp->id);          format_add(ft, "pane_id", "%%%u", wp->id);
         format_add(ft, "pane_active", "%d", wp == wp->window->active);          format_add(ft, "pane_active", "%d", wp == wp->window->active);
         format_add(ft, "pane_input_off", "%d", !!(wp->flags & PANE_INPUTOFF));          format_add(ft, "pane_input_off", "%d", !!(wp->flags & PANE_INPUTOFF));
           format_add(ft, "pane_pipe", "%d", wp->pipe_fd != -1);
   
         status = wp->status;          status = wp->status;
         if (wp->fd == -1 && WIFEXITED(status))          if (wp->fd == -1 && WIFEXITED(status))

Legend:
Removed from v.1.142  
changed lines
  Added in v.1.143