Introduction
Introduction Statistics Contact Development Disclaimer Help
tslight changes - dwm - [fork] customized build of dwm, the dynamic window mana…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 64243ab05b1eb6edfd2ede98a318de7379b7dc2e
parent 32c5046635da102dd3b6789462234e3147b190ab
Author: Anselm R Garbe <[email protected]>
Date: Mon, 26 May 2008 11:42:02 +0100
slight changes
Diffstat:
M dwm.c | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
---
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
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.