[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.1 and 1.2

version 1.1, 2009/12/08 07:49:31 version 1.2, 2010/01/07 20:28:01
Line 42 
Line 42 
 struct layout_cell *  struct layout_cell *
 layout_find_string(struct window *w, const char *s)  layout_find_string(struct window *w, const char *s)
 {  {
         struct layout_cell      *lc = w->layout_root;          struct layout_cell      *lc;
   
           lc = NULL;
   
         if (strcasecmp(s, "top") == 0)          if (strcasecmp(s, "top") == 0)
                 lc = layout_find_top(lc);                  lc = layout_find_top(lc);

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