[BACK]Return to cmd-if-shell.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-if-shell.c between version 1.33 and 1.34

version 1.33, 2015/09/16 22:24:54 version 1.34, 2015/10/31 08:13:58
Line 66 
Line 66 
         struct winlink                  *wl = NULL;          struct winlink                  *wl = NULL;
         struct window_pane              *wp = NULL;          struct window_pane              *wp = NULL;
         struct format_tree              *ft;          struct format_tree              *ft;
         int                              cwd;          const char                      *cwd;
   
         if (args_has(args, 't')) {          if (args_has(args, 't')) {
                 wl = cmd_find_pane(cmdq, args_get(args, 't'), &s, &wp);                  wl = cmd_find_pane(cmdq, args_get(args, 't'), &s, &wp);
Line 83 
Line 83 
                 else if (s != NULL)                  else if (s != NULL)
                         cwd = s->cwd;                          cwd = s->cwd;
                 else                  else
                         cwd = -1;                          cwd = NULL;
         }          }
   
         ft = format_create();          ft = format_create();

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34