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

Diff for /src/usr.bin/tmux/cmd.c between version 1.72 and 1.73

version 1.72, 2012/11/27 09:20:03 version 1.73, 2012/12/24 12:38:57
Line 863 
Line 863 
                 wl = s->curw;                  wl = s->curw;
         else if (winptr[0] == '!' && winptr[1] == '\0')          else if (winptr[0] == '!' && winptr[1] == '\0')
                 wl = TAILQ_FIRST(&s->lastw);                  wl = TAILQ_FIRST(&s->lastw);
           else if (winptr[0] == '^' && winptr[1] == '\0')
                   wl = RB_MIN(winlinks, &s->windows);
           else if (winptr[0] == '$' && winptr[1] == '\0')
                   wl = RB_MAX(winlinks, &s->windows);
         else if (winptr[0] == '+' || winptr[0] == '-')          else if (winptr[0] == '+' || winptr[0] == '-')
                 wl = cmd_find_window_offset(winptr, s, &ambiguous);                  wl = cmd_find_window_offset(winptr, s, &ambiguous);
         else          else

Legend:
Removed from v.1.72  
changed lines
  Added in v.1.73