diff options
code-style: simplify some checks
main change here is making the `zoom()` logic saner. the rest of the
changes are just small stuff which accumulated on my local branch.
pop() must not be called with NULL. and `zoom()` achieves this, but in a
very (unnecessarily) complicated way:
if c == NULL then nexttiled() will return NULL as well, so we enter this
branch:
if (c == nexttiled(selmon->clients))
in here the !c check fails and the function returns before calling pop()
if (!c || !(c = nexttiled(c->next)))
return;
however, none of this was needed. we can simply return early if c was NULL.
Also `c` is set to `selmon->sel` so we can use `c` in the first check
instead which makes things shorter.
Diffstat (limited to 'dwm.c%25252525252525253fid%25252525252525253d04c2d3bf025044724b4d06d782067fd58d36b498%252525252525253fid%252525252525253d00cfdc0aa7a75aae42303cebda46ffaa95803b27%2525252525253fid%2525252525253d5799dd1fca6576b662d299e210cd5933b29d502d%25252525253fid%25252525253d5799dd1fca6576b662d299e210cd5933b29d502d%252525253fid%252525253d44adafe0069e73aa03a3829d7bb39591cd8b3f1d%2525253fid%2525253da859676ead17017bbe81b4989b2f2e0b00a0b4ba%25253fid%25253de0dee911455cee739a5b05a994828f4a37a2764d%253fid%253d5e76e7e21da042c493c59235ca82d7275f20a7e4%3fid%3d5e76e7e21da042c493c59235ca82d7275f20a7e4&id2%3d5b2e5e7a4001479e4dc3e245f96e49f7ea0da658?id=5e76e7e21da042c493c59235ca82d7275f20a7e4')
0 files changed, 0 insertions, 0 deletions