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

Diff for /src/usr.bin/tmux/window-tree.c between version 1.41 and 1.42

version 1.41, 2019/09/25 19:05:59 version 1.42, 2019/10/15 08:30:36
Line 191 
Line 191 
         const struct session *const     *b = b0;          const struct session *const     *b = b0;
         const struct session            *sa = *a;          const struct session            *sa = *a;
         const struct session            *sb = *b;          const struct session            *sb = *b;
         int                              result;          int                              result = 0;
   
         switch (window_tree_sort->field) {          switch (window_tree_sort->field) {
         case WINDOW_TREE_BY_INDEX:          case WINDOW_TREE_BY_INDEX:
Line 226 
Line 226 
         const struct winlink            *wlb = *b;          const struct winlink            *wlb = *b;
         struct window                   *wa = wla->window;          struct window                   *wa = wla->window;
         struct window                   *wb = wlb->window;          struct window                   *wb = wlb->window;
         int                              result;          int                              result = 0;
   
         switch (window_tree_sort->field) {          switch (window_tree_sort->field) {
         case WINDOW_TREE_BY_INDEX:          case WINDOW_TREE_BY_INDEX:

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42