aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-17 01:33:26 -0800
committerFuwn <[email protected]>2024-01-17 01:33:26 -0800
commit2da94fcec816c920aa81e9a80de11027b5aa7e00 (patch)
treeca258272f8af3d5818cbe6a2f166a2f236a6671a
parentchore(config.h): no discard const qualifier (diff)
downloadseiwm-2da94fcec816c920aa81e9a80de11027b5aa7e00.tar.xz
seiwm-2da94fcec816c920aa81e9a80de11027b5aa7e00.zip
chore(sei.c): pop is unused
-rw-r--r--sei.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sei.c b/sei.c
index e9aba1b..16a19b0 100644
--- a/sei.c
+++ b/sei.c
@@ -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);