tslight changes - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 64243ab05b1eb6edfd2ede98a318de7379b7dc2e
(DIR) parent 32c5046635da102dd3b6789462234e3147b190ab
(HTM) Author: Anselm R Garbe <garbeam@gmail.com>
Date: Mon, 26 May 2008 11:42:02 +0100
slight changes
Diffstat:
M dwm.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
---
(DIR) diff --git a/dwm.c b/dwm.c
t@@ -349,7 +349,6 @@ checkotherwm(void) {
XSync(dpy, False);
if(otherwm)
eprint("dwm: another window manager is already running\n");
- XSync(dpy, False);
XSetErrorHandler(NULL);
xerrorxlib = XSetErrorHandler(xerror);
XSync(dpy, False);
t@@ -875,11 +874,9 @@ keypress(XEvent *e) {
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
for(i = 0; i < LENGTH(keys); i++)
if(keysym == keys[i].keysym
- && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state))
- {
- if(keys[i].func)
- keys[i].func(keys[i].arg);
- }
+ && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
+ && keys[i].func)
+ keys[i].func(keys[i].arg);
}
void