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

Diff for /src/usr.bin/tmux/layout.c between version 1.33 and 1.34

version 1.33, 2017/11/15 19:59:27 version 1.34, 2018/01/12 10:16:03
Line 97 
Line 97 
 layout_print_cell(struct layout_cell *lc, const char *hdr, u_int n)  layout_print_cell(struct layout_cell *lc, const char *hdr, u_int n)
 {  {
         struct layout_cell      *lcchild;          struct layout_cell      *lcchild;
           const char              *type;
   
         log_debug("%s:%*s%p type %u [parent %p] wp=%p [%u,%u %ux%u]", hdr, n,          switch (lc->type) {
             " ", lc, lc->type, lc->parent, lc->wp, lc->xoff, lc->yoff, lc->sx,          case LAYOUT_LEFTRIGHT:
                   type = "LEFTRIGHT";
                   break;
           case LAYOUT_TOPBOTTOM:
                   type = "TOPBOTTOM";
                   break;
           case LAYOUT_WINDOWPANE:
                   type = "WINDOWPANE";
                   break;
           default:
                   type = "UNKNOWN";
                   break;
           }
           log_debug("%s:%*s%p type %s [parent %p] wp=%p [%u,%u %ux%u]", hdr, n,
               " ", lc, type, lc->parent, lc->wp, lc->xoff, lc->yoff, lc->sx,
             lc->sy);              lc->sy);
         switch (lc->type) {          switch (lc->type) {
         case LAYOUT_LEFTRIGHT:          case LAYOUT_LEFTRIGHT:

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34