diff options
| author | Fuwn <[email protected]> | 2024-01-17 01:33:26 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-17 01:33:26 -0800 |
| commit | 2da94fcec816c920aa81e9a80de11027b5aa7e00 (patch) | |
| tree | ca258272f8af3d5818cbe6a2f166a2f236a6671a | |
| parent | chore(config.h): no discard const qualifier (diff) | |
| download | seiwm-2da94fcec816c920aa81e9a80de11027b5aa7e00.tar.xz seiwm-2da94fcec816c920aa81e9a80de11027b5aa7e00.zip | |
chore(sei.c): pop is unused
| -rw-r--r-- | sei.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -307,7 +307,7 @@ static void movemouse(const Arg *arg); static void nametag(const Arg *arg); static Client *nexttagged(Client *c); static Client *nexttiled(Client *c); -static void pop(Client *c); +// static void pop(Client *c); static void propertynotify(XEvent *e); static void pushstack(const Arg *arg); static void quit(const Arg *arg); @@ -1851,12 +1851,12 @@ Client *nexttiled(Client *c) { return c; } -void pop(Client *c) { - detach(c); - attach(c); - focus(c); - arrange(c->mon); -} +// void pop(Client *c) { +// detach(c); +// attach(c); +// focus(c); +// arrange(c->mon); +// } void pushstack(const Arg *arg) { int i = stackpos(arg); |