Use RB_MIN to get the lowest index for the current window when creating

grouped sessions, rather than using RB_ROOT.
pull/1/head
nicm 2015-05-29 23:02:27 +00:00
parent 379400cfa6
commit a55e569af5
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ cmd_new_session_exec(struct cmd *self, struct cmd_q *cmdq)
if (groupwith != NULL) {
session_group_add(groupwith, s);
session_group_synchronize_to(s);
session_select(s, RB_ROOT(&s->windows)->idx);
session_select(s, RB_MIN(winlinks, &s->windows)->idx);
}
/*