Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (from parent 1:
2e95837
)
removed some more useless clunk
author
Anselm R Garbe <
[email protected]
>
Wed, 5 Mar 2008 18:48:33 +0000
(18:48 +0000)
committer
Anselm R Garbe <
[email protected]
>
Wed, 5 Mar 2008 18:48:33 +0000
(18:48 +0000)
config.mk
patch
|
blob
|
history
dwm.c
patch
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index
96811e0
..
b63e2ca
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-17,8
+17,8
@@
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = -s ${LIBS}
# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = -s ${LIBS}
-CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" -DWORK
-LDFLAGS = -g ${LIBS}
+
#
CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\" -DWORK
+
#
LDFLAGS = -g ${LIBS}
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
diff --git
a/dwm.c
b/dwm.c
index
a122180
..
2efc50b
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-183,15
+183,12
@@
int xerror(Display *dpy, XErrorEvent *ee);
int xerrordummy(Display *dpy, XErrorEvent *ee);
int xerrorstart(Display *dpy, XErrorEvent *ee);
void zoom(const char *arg);
int xerrordummy(Display *dpy, XErrorEvent *ee);
int xerrorstart(Display *dpy, XErrorEvent *ee);
void zoom(const char *arg);
-void selectview(const char *arg);
/* variables */
char stext[256], buf[256];
/* variables */
char stext[256], buf[256];
-double mwfact;
int screen, sx, sy, sw, sh;
int (*xerrorxlib)(Display *, XErrorEvent *);
int screen, sx, sy, sw, sh;
int (*xerrorxlib)(Display *, XErrorEvent *);
-unsigned int bh, bpos;
-unsigned int blw = 0;
+unsigned int bh, blw = 0;
unsigned int numlockmask = 0;
void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
unsigned int numlockmask = 0;
void (*handler[LASTEvent]) (XEvent *) = {
[ButtonPress] = buttonpress,
@@
-219,7
+216,7
@@
Client *stack = NULL;
Cursor cursor[CurLast];
Display *dpy;
DC dc = {0};
Cursor cursor[CurLast];
Display *dpy;
DC dc = {0};
-Layout *lt;
+Layout *lt
= NULL
;
Window root, barwin;
/* configuration, allows nested code to access above variables */
Window root, barwin;
/* configuration, allows nested code to access above variables */
@@
-362,7
+359,6
@@
checkotherwm(void) {
void
cleanup(void) {
void
cleanup(void) {
-
close(STDIN_FILENO);
while(stack) {
unban(stack);
close(STDIN_FILENO);
while(stack) {
unban(stack);
@@
-372,7
+368,6
@@
cleanup(void) {
XFreeFontSet(dpy, dc.font.set);
else
XFreeFont(dpy, dc.font.xfont);
XFreeFontSet(dpy, dc.font.set);
else
XFreeFont(dpy, dc.font.xfont);
-
XUngrabKey(dpy, AnyKey, AnyModifier, root);
XFreePixmap(dpy, dc.drawable);
XFreeGC(dpy, dc.gc);
XUngrabKey(dpy, AnyKey, AnyModifier, root);
XFreePixmap(dpy, dc.drawable);
XFreeGC(dpy, dc.gc);