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

Diff for /src/usr.bin/tmux/session.c between version 1.34 and 1.35

version 1.34, 2012/04/29 17:20:01 version 1.35, 2012/07/08 07:27:32
Line 353 
Line 353 
         winlink_stack_remove(&s->lastw, wl);          winlink_stack_remove(&s->lastw, wl);
         winlink_stack_push(&s->lastw, s->curw);          winlink_stack_push(&s->lastw, s->curw);
         s->curw = wl;          s->curw = wl;
         wl->flags &= ~WINLINK_ALERTFLAGS;          winlink_clear_flags(wl);
         return (0);          return (0);
 }  }
   
Line 390 
Line 390 
         winlink_stack_remove(&s->lastw, wl);          winlink_stack_remove(&s->lastw, wl);
         winlink_stack_push(&s->lastw, s->curw);          winlink_stack_push(&s->lastw, s->curw);
         s->curw = wl;          s->curw = wl;
         wl->flags &= ~WINLINK_ALERTFLAGS;          winlink_clear_flags(wl);
         return (0);          return (0);
 }  }
   
Line 408 
Line 408 
         winlink_stack_remove(&s->lastw, wl);          winlink_stack_remove(&s->lastw, wl);
         winlink_stack_push(&s->lastw, s->curw);          winlink_stack_push(&s->lastw, s->curw);
         s->curw = wl;          s->curw = wl;
         wl->flags &= ~WINLINK_ALERTFLAGS;          winlink_clear_flags(wl);
         return (0);          return (0);
 }  }
   
Line 427 
Line 427 
         winlink_stack_remove(&s->lastw, wl);          winlink_stack_remove(&s->lastw, wl);
         winlink_stack_push(&s->lastw, s->curw);          winlink_stack_push(&s->lastw, s->curw);
         s->curw = wl;          s->curw = wl;
         wl->flags &= ~WINLINK_ALERTFLAGS;          winlink_clear_flags(wl);
         return (0);          return (0);
 }  }
   

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