[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.25 and 1.26

version 1.25, 2010/12/21 22:37:59 version 1.26, 2010/12/30 23:16:18
Line 105 
Line 105 
         TAILQ_INIT(&s->lastw);          TAILQ_INIT(&s->lastw);
         RB_INIT(&s->windows);          RB_INIT(&s->windows);
   
         paste_init_stack(&s->buffers);  
   
         options_init(&s->options, &global_s_options);          options_init(&s->options, &global_s_options);
         environ_init(&s->environ);          environ_init(&s->environ);
         if (env != NULL)          if (env != NULL)
Line 155 
Line 153 
         session_group_remove(s);          session_group_remove(s);
         environ_free(&s->environ);          environ_free(&s->environ);
         options_free(&s->options);          options_free(&s->options);
         paste_free_stack(&s->buffers);  
   
         while (!TAILQ_EMPTY(&s->lastw))          while (!TAILQ_EMPTY(&s->lastw))
                 winlink_stack_remove(&s->lastw, TAILQ_FIRST(&s->lastw));                  winlink_stack_remove(&s->lastw, TAILQ_FIRST(&s->lastw));

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26