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

Diff for /src/usr.bin/tmux/window.c between version 1.90 and 1.91

version 1.90, 2013/03/22 10:31:22 version 1.91, 2013/03/24 09:21:27
Line 310 
Line 310 
 struct window *  struct window *
 window_create(const char *name, const char *cmd, const char *shell,  window_create(const char *name, const char *cmd, const char *shell,
     const char *cwd, struct environ *env, struct termios *tio,      const char *cwd, struct environ *env, struct termios *tio,
     u_int sx, u_int sy, u_int hlimit,char **cause)      u_int sx, u_int sy, u_int hlimit, char **cause)
 {  {
         struct window           *w;          struct window           *w;
         struct window_pane      *wp;          struct window_pane      *wp;
           const char              *prefix;
           char                    *cmd1;
   
         w = window_create1(sx, sy);          w = window_create1(sx, sy);
         wp = window_add_pane(w, hlimit);          wp = window_add_pane(w, hlimit);
         layout_init(w);          layout_init(w);
         if (window_pane_spawn(wp, cmd, shell, cwd, env, tio, cause) != 0) {  
           if (*cmd != '\0') {
                   prefix = options_get_string(&w->options, "command-prefix");
                   xasprintf(&cmd1, "%s%s", prefix, cmd);
           } else
                   cmd1 = xstrdup("");
           if (window_pane_spawn(wp, cmd1, shell, cwd, env, tio, cause) != 0) {
                 window_destroy(w);                  window_destroy(w);
                   free(cmd1);
                 return (NULL);                  return (NULL);
         }          }
           free(cmd1);
   
         w->active = TAILQ_FIRST(&w->panes);          w->active = TAILQ_FIRST(&w->panes);
         if (name != NULL) {          if (name != NULL) {
                 w->name = xstrdup(name);                  w->name = xstrdup(name);
                 options_set_number(&w->options, "automatic-rename", 0);                  options_set_number(&w->options, "automatic-rename", 0);
         } else          } else
                 w->name = default_window_name(w);                  w->name = default_window_name(w);
   
         return (w);          return (w);
 }  }
   
Line 703 
Line 715 
                 free(wp->cwd);                  free(wp->cwd);
                 wp->cwd = xstrdup(cwd);                  wp->cwd = xstrdup(cwd);
         }          }
   
           log_debug("spawn: %s -- %s", wp->shell, wp->cmd);
   
         memset(&ws, 0, sizeof ws);          memset(&ws, 0, sizeof ws);
         ws.ws_col = screen_size_x(&wp->base);          ws.ws_col = screen_size_x(&wp->base);

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91