all repos — dwm @ c8e9479186dd7e3a0d6dc938369ab3bf7dc4a1d0

my dwm build

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.
Christopher Drelich cd@cdrakka.com
Wed, 02 May 2018 18:09:50 -0400
commit

c8e9479186dd7e3a0d6dc938369ab3bf7dc4a1d0

parent

10dfa65860d770cbce2cdaf67618f44f726a27c3

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M dwm.cdwm.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);