[hackers] [dwm][PATCH] All functions in alphabetical order except for this one.

From: Christopher Drelich <cd_AT_cdrakka.com>
Date: Wed, 14 Mar 2018 13:58:06 -0400

---
 dwm.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/dwm.c b/dwm.c
index 3ed065c..2c1fd4c 100644
--- a/dwm.c
+++ b/dwm.c
_AT_@ -223,8 +223,8 @@ static void updateclientlist(void);
 static void updatenumlockmask(void);
 static void updatesizehints(Client *c);
 static void updatestatus(void);
-static void updatewindowtype(Client *c);
 static void updatetitle(Client *c);
+static void updatewindowtype(Client *c);
 static void updatewmhints(Client *c);
 static void view(const Arg *arg);
 static Client *wintoclient(Window w);
_AT_@ -1985,6 +1985,14 @@ updatesizehints(Client *c)
 }
 
 void
+updatestatus(void)
+{
+	if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
+		strcpy(stext, "dwm-"VERSION);
+	drawbar(selmon);
+}
+
+void
 updatetitle(Client *c)
 {
 	if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
_AT_@ -1994,14 +2002,6 @@ updatetitle(Client *c)
 }
 
 void
-updatestatus(void)
-{
-	if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
-		strcpy(stext, "dwm-"VERSION);
-	drawbar(selmon);
-}
-
-void
 updatewindowtype(Client *c)
 {
 	Atom state = getatomprop(c, netatom[NetWMState]);
-- 
2.7.4
Received on Wed Mar 14 2018 - 18:58:06 CET

This archive was generated by hypermail 2.3.0 : Wed Mar 14 2018 - 19:00:35 CET