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

Diff for /src/usr.bin/tmux/cmd-refresh-client.c between version 1.36 and 1.37

version 1.36, 2020/05/22 11:07:04 version 1.37, 2020/06/05 07:33:57
Line 66 
Line 66 
                 control_set_pane_on(tc, wp);                  control_set_pane_on(tc, wp);
         else if (strcmp(colon, "off") == 0)          else if (strcmp(colon, "off") == 0)
                 control_set_pane_off(tc, wp);                  control_set_pane_off(tc, wp);
           else if (strcmp(colon, "continue") == 0)
                   control_continue_pane(tc, wp);
   
 out:  out:
         free(copy);          free(copy);
Line 168 
Line 170 
                 }                  }
                 tty_set_size(&tc->tty, x, y, 0, 0);                  tty_set_size(&tc->tty, x, y, 0, 0);
                 tc->flags |= CLIENT_SIZECHANGED;                  tc->flags |= CLIENT_SIZECHANGED;
                 recalculate_sizes();                  recalculate_sizes_now(1);
                 return (CMD_RETURN_NORMAL);                  return (CMD_RETURN_NORMAL);
         }          }
   

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37