From c5596677d76b3e0161a01b355163ac681453e54f Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sat, 11 Jul 2020 20:12:20 +0200 Subject: [PATCH] removed pop unnecessary pop function to speed up install --- dwm.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dwm.c b/dwm.c index bed64da..d37119a 100644 --- a/dwm.c +++ b/dwm.c @@ -190,7 +190,7 @@ static void monocle(Monitor *m); static void motionnotify(XEvent *e); static void movemouse(const Arg *arg); static Client *nexttiled(Client *c); -static void pop(Client *); +//static void pop(Client *); static void propertynotify(XEvent *e); static void quit(const Arg *arg); static Monitor *recttomon(int x, int y, int w, int h); @@ -1263,14 +1263,14 @@ 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 propertynotify(XEvent *e)