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

Diff for /src/usr.bin/tmux/Attic/layout-string.c between version 1.2 and 1.3

version 1.2, 2010/01/07 20:28:01 version 1.3, 2010/01/07 20:30:02
Line 47 
Line 47 
         lc = NULL;          lc = NULL;
   
         if (strcasecmp(s, "top") == 0)          if (strcasecmp(s, "top") == 0)
                 lc = layout_find_top(lc);                  lc = layout_find_top(w->layout_root);
         else if (strcasecmp(s, "bottom") == 0)          else if (strcasecmp(s, "bottom") == 0)
                 lc = layout_find_bottom(lc);                  lc = layout_find_bottom(w->layout_root);
         else if (strcasecmp(s, "left") == 0)          else if (strcasecmp(s, "left") == 0)
                 lc = layout_find_left(lc);                  lc = layout_find_left(w->layout_root);
         else if (strcasecmp(s, "right") == 0)          else if (strcasecmp(s, "right") == 0)
                 lc = layout_find_right(lc);                  lc = layout_find_right(w->layout_root);
         else if (strcasecmp(s, "top-left") == 0)          else if (strcasecmp(s, "top-left") == 0)
                 lc = layout_find_topleft(lc);                  lc = layout_find_topleft(w->layout_root);
         else if (strcasecmp(s, "top-right") == 0)          else if (strcasecmp(s, "top-right") == 0)
                 lc = layout_find_topright(lc);                  lc = layout_find_topright(w->layout_root);
         else if (strcasecmp(s, "bottom-left") == 0)          else if (strcasecmp(s, "bottom-left") == 0)
                 lc = layout_find_bottomleft(lc);                  lc = layout_find_bottomleft(w->layout_root);
         else if (strcasecmp(s, "bottom-right") == 0)          else if (strcasecmp(s, "bottom-right") == 0)
                 lc = layout_find_bottomright(lc);                  lc = layout_find_bottomright(w->layout_root);
   
         if (lc == NULL || lc->type != LAYOUT_WINDOWPANE)          if (lc == NULL || lc->type != LAYOUT_WINDOWPANE)
                 return (NULL);                  return (NULL);

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3