dwm
dynamic window manager
git clone https://9o.is/git/dwm.git
commit cecdce62f9c961868682ad622994b34ce1db7722 parent c5a54104ea8c173732d3d102ee9c9247fe09ff3a Author: Christopher Drelich <cd@cdrakka.com> Date: Wed, 2 May 2018 18:09:50 -0400 Function declarations in correct order. In dwm.c function declarations are in alphabetical order except for updategeom(). There doesn't appear to be any reason for this, so this patch corrects that, and now all function declarations are in alphabetical order. Diffstat:
| M | dwm.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dwm.c b/dwm.c @@ -216,10 +216,10 @@ static void toggleview(const Arg *arg); static void unfocus(Client *c, int setfocus); static void unmanage(Client *c, int destroyed); static void unmapnotify(XEvent *e); -static int updategeom(void); static void updatebarpos(Monitor *m); static void updatebars(void); static void updateclientlist(void); +static int updategeom(void); static void updatenumlockmask(void); static void updatesizehints(Client *c); static void updatestatus(void);