Re: [dev] [dwm] code cleanup

2011-07-27 Thread garbeam
Hi,

On 27 July 2011 00:23, anonymous p37si...@lavabit.com wrote:
 Fixed patch attached.

Thanks, applied.

--garbeam



[dev] [dwm] code cleanup

2011-07-26 Thread anonymous
Style fixes, removed

missing = NULL;

line.  XCreateFontSet do it for you at the beginning of function [1].
Added missing blank line, still 5 lines removed.

dwm page [2] says dwm is only a single binary, and its source code is
intended to never exceed 2000 SLOC.  wc -l says there are 2077 lines
(2072 with patch).  Some code should be removed or rewritten or dwm will
grow over 2100 lines soon.

[1] 
http://www.openbsd.org/cgi-bin/cvsweb/xenocara/lib/libX11/src/FSWrap.c?rev=1.3
[2] http://dwm.suckless.org/




Re: [dev] [dwm] code cleanup

2011-07-26 Thread Lukas Fleischer
On Tue, Jul 26, 2011 at 11:16:30PM +0400, anonymous wrote:
 Style fixes, removed
 
   missing = NULL;
 
 line.  XCreateFontSet do it for you at the beginning of function [1].
 Added missing blank line, still 5 lines removed.
 
 dwm page [2] says dwm is only a single binary, and its source code is
 intended to never exceed 2000 SLOC.  wc -l says there are 2077 lines
 (2072 with patch).  Some code should be removed or rewritten or dwm will
 grow over 2100 lines soon.
 

The output `wc -l` is a bad measure for the actual SLOC. It counts
comments, empty lines, wrapped lines etc. sloccount(1) says dwm.c from
the 5.9 release tarball has 1836 SLOC which is fine.

 [1] 
 http://www.openbsd.org/cgi-bin/cvsweb/xenocara/lib/libX11/src/FSWrap.c?rev=1.3
 [2] http://dwm.suckless.org/



Re: [dev] [dwm] code cleanup

2011-07-26 Thread Peter Hartlich
Hi,

  void
  grabkeys(void) {
 + unsigned int i, j;
 + unsigned int modifiers[] = { 0, LockMask, numlockmask, 
 numlockmask|LockMask };
 + KeyCode code;
 +
   updatenumlockmask();
 - {
 - unsigned int i, j;
 - unsigned int modifiers[] = { 0, LockMask, numlockmask, 
 numlockmask|LockMask };
 - KeyCode code;

That would break the numlockmask stuff.

Regards,
Peter



Re: [dev] [dwm] code cleanup

2011-07-26 Thread anonymous
On Tue, Jul 26, 2011 at 11:54:14PM +0200, Peter Hartlich wrote:
 Hi,
 
   void
   grabkeys(void) {
  +   unsigned int i, j;
  +   unsigned int modifiers[] = { 0, LockMask, numlockmask, 
  numlockmask|LockMask };
  +   KeyCode code;
  +
  updatenumlockmask();
  -   {
  -   unsigned int i, j;
  -   unsigned int modifiers[] = { 0, LockMask, numlockmask, 
  numlockmask|LockMask };
  -   KeyCode code;
 
 That would break the numlockmask stuff.
 
 Regards,
 Peter
 
Fixed patch attached.
diff -r 701f651eaecc dwm.c
--- a/dwm.c Sun Jul 24 10:41:43 2011 +0100
+++ b/dwm.c Wed Jul 27 01:22:44 2011 +0300
@@ -433,9 +433,9 @@
}
if(ev-window == selmon-barwin) {
i = x = 0;
-   do {
+   do
x += TEXTW(tags[i]);
-   } while(ev-x = x  ++i  LENGTH(tags));
+   while(ev-x = x  ++i  LENGTH(tags));
if(i  LENGTH(tags)) {
click = ClkTagBar;
arg.ui = 1  i;
@@ -720,12 +720,10 @@
if(!(m = selmon-next))
m = mons;
}
-   else {
-   if(selmon == mons)
-   for(m = mons; m-next; m = m-next);
-   else
-   for(m = mons; m-next != selmon; m = m-next);
-   }
+   else if(selmon == mons)
+   for(m = mons; m-next; m = m-next);
+   else
+   for(m = mons; m-next != selmon; m = m-next);
return m;
 }
 
@@ -1017,12 +1015,11 @@
KeyCode code;
 
XUngrabKey(dpy, AnyKey, AnyModifier, root);
-   for(i = 0; i  LENGTH(keys); i++) {
+   for(i = 0; i  LENGTH(keys); i++)
if((code = XKeysymToKeycode(dpy, keys[i].keysym)))
for(j = 0; j  LENGTH(modifiers); j++)
XGrabKey(dpy, code, keys[i].mod | 
modifiers[j], root,
 True, GrabModeAsync, 
GrabModeAsync);
-   }
}
 }
 
@@ -1031,7 +1028,6 @@
char *def, **missing;
int n;
 
-   missing = NULL;
dc.font.set = XCreateFontSet(dpy, fontstr, missing, n, def);
if(missing) {
while(n--)
@@ -1311,6 +1307,7 @@
return m;
return selmon;
 }
+
 void
 quit(const Arg *arg) {
running = False;
@@ -1415,10 +1412,9 @@
XEvent ev;
/* main event loop */
XSync(dpy, False);
-   while(running  !XNextEvent(dpy, ev)) {
+   while(running  !XNextEvent(dpy, ev))
if(handler[ev.type])
handler[ev.type](ev); /* call handler */
-   }
 }
 
 void