[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.139 and 1.140

version 1.139, 2015/08/28 16:10:46 version 1.140, 2015/08/28 17:11:12
Line 704 
Line 704 
 window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)  window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit)
 {  {
         struct window_pane      *wp;          struct window_pane      *wp;
           char                     host[HOST_NAME_MAX + 1];
   
         wp = xcalloc(1, sizeof *wp);          wp = xcalloc(1, sizeof *wp);
         wp->window = w;          wp->window = w;
Line 739 
Line 740 
   
         screen_init(&wp->base, sx, sy, hlimit);          screen_init(&wp->base, sx, sy, hlimit);
         wp->screen = &wp->base;          wp->screen = &wp->base;
   
           if (gethostname(host, sizeof host) == 0)
                   screen_set_title(&wp->base, host);
   
         input_init(wp);          input_init(wp);
   

Legend:
Removed from v.1.139  
changed lines
  Added in v.1.140