[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.258 and 1.259

version 1.258, 2020/05/16 14:53:23 version 1.259, 2020/05/16 15:01:31
Line 865 
Line 865 
         wp->fd = -1;          wp->fd = -1;
         wp->event = NULL;          wp->event = NULL;
   
           wp->fg = 8;
           wp->bg = 8;
   
         TAILQ_INIT(&wp->modes);          TAILQ_INIT(&wp->modes);
   
         wp->layout_cell = NULL;          wp->layout_cell = NULL;
Line 1096 
Line 1099 
         wp->screen = wme->screen;          wp->screen = wme->screen;
         wp->flags |= (PANE_REDRAW|PANE_CHANGED);          wp->flags |= (PANE_REDRAW|PANE_CHANGED);
   
           server_redraw_window_borders(wp->window);
         server_status_window(wp->window);          server_status_window(wp->window);
         notify_pane("pane-mode-changed", wp);          notify_pane("pane-mode-changed", wp);
   
Line 1127 
Line 1131 
         }          }
         wp->flags |= (PANE_REDRAW|PANE_CHANGED);          wp->flags |= (PANE_REDRAW|PANE_CHANGED);
   
           server_redraw_window_borders(wp->window);
         server_status_window(wp->window);          server_status_window(wp->window);
         notify_pane("pane-mode-changed", wp);          notify_pane("pane-mode-changed", wp);
 }  }

Legend:
Removed from v.1.258  
changed lines
  Added in v.1.259