aboutsummaryrefslogtreecommitdiff
path: root/dwm.c
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-05-23 18:24:58 -0700
committerFuwn <[email protected]>2024-05-23 18:24:58 -0700
commit8aab4c0177ea39413ab413186670947e82277ac1 (patch)
tree47fe2231eb1fd34a7ec0f97f7f8ebdefb3aaff40 /dwm.c
parentchore(config.ninja): tighter clang-tidy checks (diff)
downloadseiwm-8aab4c0177ea39413ab413186670947e82277ac1.tar.xz
seiwm-8aab4c0177ea39413ab413186670947e82277ac1.zip
refactor: correct warnings
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/dwm.c b/dwm.c
index 55ee36d..9faa6bd 100644
--- a/dwm.c
+++ b/dwm.c
@@ -277,7 +277,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);
@@ -380,8 +380,6 @@ static int lrpad; /* sum of left and right padding for text */
static int sp; /* side padding for bar */
static int (*xerrorxlib)(Display *, XErrorEvent *);
static unsigned int numlockmask = 0;
-static int enablefullscreen = 0;
-static int enableoutergaps = 1;
static int manuallytoggledbar = 0;
static int lrpad; /* sum of left and right padding for text */
static void (*handler[LASTEvent]) (XEvent *) = {
@@ -1841,14 +1839,14 @@ nexttiled(Client *c)
return c;
}
-void
+/* void
pop(Client *c)
{
detach(c);
attach(c);
focus(c);
arrange(c->mon);
-}
+} */
void
pushstack(const Arg *arg) {