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

Diff for /src/usr.bin/tmux/cmd-respawn-pane.c between version 1.5 and 1.6

version 1.5, 2012/03/17 22:34:12 version 1.6, 2012/07/10 11:53:01
Line 19 
Line 19 
   
 #include <sys/types.h>  #include <sys/types.h>
   
   #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
   
 #include "tmux.h"  #include "tmux.h"
Line 79 
Line 80 
                 cmd = NULL;                  cmd = NULL;
         if (window_pane_spawn(wp, cmd, NULL, NULL, &env, s->tio, &cause) != 0) {          if (window_pane_spawn(wp, cmd, NULL, NULL, &env, s->tio, &cause) != 0) {
                 ctx->error(ctx, "respawn pane failed: %s", cause);                  ctx->error(ctx, "respawn pane failed: %s", cause);
                 xfree(cause);                  free(cause);
                 environ_free(&env);                  environ_free(&env);
                 return (-1);                  return (-1);
         }          }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6