[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.1 and 1.2

version 1.1, 2011/08/26 10:53:16 version 1.2, 2011/10/02 06:55:48
Line 343 
Line 343 
         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_dead", "%d", wp->fd == -1);          format_add(ft, "pane_dead", "%d", wp->fd == -1);
           if (wp->cmd != NULL)
                   format_add(ft, "pane_start_command", "%s", wp->cmd);
           if (wp->cwd != NULL)
                   format_add(ft, "pane_start_path", "%s", wp->cwd);
           format_add(ft, "pane_pid", "%ld", (long) wp->pid);
           format_add(ft, "pane_tty", "%s", wp->tty);
 }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2