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

Diff for /src/usr.bin/tmux/input.c between version 1.181 and 1.182

version 1.181, 2020/06/16 08:18:34 version 1.182, 2020/07/24 07:05:37
Line 1867 
Line 1867 
                         case 2:                          case 2:
                                 screen_pop_title(sctx->s);                                  screen_pop_title(sctx->s);
                                 if (wp != NULL) {                                  if (wp != NULL) {
                                           notify_pane("pane-title-changed", wp);
                                         server_redraw_window_borders(wp->window);                                          server_redraw_window_borders(wp->window);
                                         server_status_window(wp->window);                                          server_status_window(wp->window);
                                 }                                  }
Line 2261 
Line 2262 
         case 0:          case 0:
         case 2:          case 2:
                 if (screen_set_title(sctx->s, p) && wp != NULL) {                  if (screen_set_title(sctx->s, p) && wp != NULL) {
                           notify_pane("pane-title-changed", wp);
                         server_redraw_window_borders(wp->window);                          server_redraw_window_borders(wp->window);
                         server_status_window(wp->window);                          server_status_window(wp->window);
                 }                  }
Line 2326 
Line 2328 
         log_debug("%s: \"%s\"", __func__, ictx->input_buf);          log_debug("%s: \"%s\"", __func__, ictx->input_buf);
   
         if (screen_set_title(sctx->s, ictx->input_buf) && wp != NULL) {          if (screen_set_title(sctx->s, ictx->input_buf) && wp != NULL) {
                   notify_pane("pane-title-changed", wp);
                 server_redraw_window_borders(wp->window);                  server_redraw_window_borders(wp->window);
                 server_status_window(wp->window);                  server_status_window(wp->window);
         }          }

Legend:
Removed from v.1.181  
changed lines
  Added in v.1.182