X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fwindows.c;h=7e0ba723a3d3978850bac3ab99709de8c73ab064;hb=a69666dfbbc1c27f0b29f4a591a69630c470df87;hp=373d2212a1626b11be3f63f0de7e156054dbfe43;hpb=b240a859a6bb5dffc4ddf5ff56130b970bd6e069;p=plomrogue diff --git a/src/windows.c b/src/windows.c index 373d221..7e0ba72 100644 --- a/src/windows.c +++ b/src/windows.c @@ -436,16 +436,18 @@ extern void shift_active_win(struct WinMeta * wmeta, char dir) wrap = 1; } - /* Suspend all visible windows. */ + /* Suspend all visible windows, remember their order in wins[]. */ uint16_t i, i_max; - for (i_max = 1, w_p = wmeta->chain_start; + for (w_p = wmeta->chain_start, i_max = 1; w_p != wmeta->chain_end; - i_max++) + w_p = w_p->next) { - w_p = w_p->next; + i_max++; } struct Win ** wins = malloc(i_max * sizeof(struct Win *)); - for (i = 0, w_p = wmeta->chain_start; i < i_max; i++) + for (i = 0, w_p = wmeta->chain_start; + i < i_max; + i++) { w_p_next = w_p->next; suspend_win(wmeta, w_p); @@ -492,7 +494,7 @@ extern void shift_active_win(struct WinMeta * wmeta, char dir) } free(wins); - wmeta->active = w_shift; /* TODO: Is this necessary? If so, why? */ + wmeta->active = w_shift; /* Otherwise lastly appended win is active. */ } } @@ -575,7 +577,7 @@ extern void draw_scroll_hint(struct Frame * frame, uint16_t pos, uint32_t dist, unit = unit_cols; } char * scrolldsc = malloc((4 * sizeof(char)) + strlen(more) + strlen(unit) - + 10); /* 10 = uint32 max strlen */ + + 10); /* 10 = uint32 max strlen */ sprintf(scrolldsc, " %d %s %s ", dist, more, unit); /* Decide on offset of the description text inside the scroll hint line. */