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

Diff for /src/usr.bin/tmux/resize.c between version 1.44 and 1.45

version 1.44, 2021/06/10 07:29:45 version 1.45, 2021/08/25 10:15:15
Line 243 
Line 243 
                 }                  }
         }          }
   
           /*
            * Ignore the given client if it is a control client - the creating
            * client should only affect the size if it is not a control client.
            */
           if (c != NULL && (c->flags & CLIENT_CONTROL))
                   c = NULL;
   
         /*          /*
          * Look for a client to base the size on. If none exists (or the type           * Look for a client to base the size on. If none exists (or the type
          * is manual), use the default-size option.           * is manual), use the default-size option.

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45