Function declarations in correct order. c8e94791
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 · 2018-05-02 18:09 1 file(s) · +1 −1
dwm.c +1 −1
216 216
static void unfocus(Client *c, int setfocus);
217 217
static void unmanage(Client *c, int destroyed);
218 218
static void unmapnotify(XEvent *e);
219 -
static int updategeom(void);
220 219
static void updatebarpos(Monitor *m);
221 220
static void updatebars(void);
222 221
static void updateclientlist(void);
222 +
static int updategeom(void);
223 223
static void updatenumlockmask(void);
224 224
static void updatesizehints(Client *c);
225 225
static void updatestatus(void);