stray space and sort while here

This commit is contained in:
okan 2013-12-13 14:45:47 +00:00
parent 34ae428cec
commit 40858be0ae

View File

@ -47,15 +47,15 @@ static void xev_handle_buttonpress(XEvent *);
static void xev_handle_buttonrelease(XEvent *); static void xev_handle_buttonrelease(XEvent *);
static void xev_handle_keypress(XEvent *); static void xev_handle_keypress(XEvent *);
static void xev_handle_keyrelease(XEvent *); static void xev_handle_keyrelease(XEvent *);
static void xev_handle_expose(XEvent *);
static void xev_handle_clientmessage(XEvent *); static void xev_handle_clientmessage(XEvent *);
static void xev_handle_randr(XEvent *); static void xev_handle_randr(XEvent *);
static void xev_handle_mappingnotify(XEvent *); static void xev_handle_mappingnotify(XEvent *);
static void xev_handle_expose(XEvent *);
void (*xev_handlers[LASTEvent])(XEvent *) = { void (*xev_handlers[LASTEvent])(XEvent *) = {
[MapRequest] = xev_handle_maprequest, [MapRequest] = xev_handle_maprequest,
[UnmapNotify] = xev_handle_unmapnotify, [UnmapNotify] = xev_handle_unmapnotify,
[DestroyNotify] = xev_handle_destroynotify,
[ConfigureRequest] = xev_handle_configurerequest, [ConfigureRequest] = xev_handle_configurerequest,
[PropertyNotify] = xev_handle_propertynotify, [PropertyNotify] = xev_handle_propertynotify,
[EnterNotify] = xev_handle_enternotify, [EnterNotify] = xev_handle_enternotify,
@ -63,10 +63,9 @@ void (*xev_handlers[LASTEvent])(XEvent *) = {
[ButtonRelease] = xev_handle_buttonrelease, [ButtonRelease] = xev_handle_buttonrelease,
[KeyPress] = xev_handle_keypress, [KeyPress] = xev_handle_keypress,
[KeyRelease] = xev_handle_keyrelease, [KeyRelease] = xev_handle_keyrelease,
[Expose] = xev_handle_expose,
[DestroyNotify] = xev_handle_destroynotify,
[ClientMessage] = xev_handle_clientmessage, [ClientMessage] = xev_handle_clientmessage,
[MappingNotify] = xev_handle_mappingnotify, [MappingNotify] = xev_handle_mappingnotify,
[Expose] = xev_handle_expose,
}; };
static KeySym modkeys[] = { XK_Alt_L, XK_Alt_R, XK_Super_L, XK_Super_R, static KeySym modkeys[] = { XK_Alt_L, XK_Alt_R, XK_Super_L, XK_Super_R,
@ -188,6 +187,7 @@ xev_handle_propertynotify(XEvent *ee)
break; break;
case XA_WM_HINTS: case XA_WM_HINTS:
client_wm_hints(cc); client_wm_hints(cc);
client_draw_border(cc);
break; break;
case XA_WM_TRANSIENT_FOR: case XA_WM_TRANSIENT_FOR:
client_transient(cc); client_transient(cc);