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

Diff for /src/usr.bin/tmux/cmd-new-session.c between version 1.40 and 1.41

version 1.40, 2012/02/02 00:10:11 version 1.41, 2012/03/17 22:35:09
Line 244 
Line 244 
                         if (old_s != NULL)                          if (old_s != NULL)
                                 ctx->cmdclient->last_session = old_s;                                  ctx->cmdclient->last_session = old_s;
                         ctx->cmdclient->session = s;                          ctx->cmdclient->session = s;
                           notify_attached_session_changed(ctx->cmdclient);
                         session_update_activity(s);                          session_update_activity(s);
                         server_redraw_client(ctx->cmdclient);                          server_redraw_client(ctx->cmdclient);
                 } else {                  } else {
Line 251 
Line 252 
                         if (old_s != NULL)                          if (old_s != NULL)
                                 ctx->curclient->last_session = old_s;                                  ctx->curclient->last_session = old_s;
                         ctx->curclient->session = s;                          ctx->curclient->session = s;
                           notify_attached_session_changed(ctx->curclient);
                         session_update_activity(s);                          session_update_activity(s);
                         server_redraw_client(ctx->curclient);                          server_redraw_client(ctx->curclient);
                 }                  }

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