Re: [dev] [PATCH] update years in copyright notices

2014-01-22 Thread Markus Teich
Heyho, Christoph Lohmann wrote: > Please don’t send tabbed patches to all authors, just to dev@suckless.org. This is just an effect of my --cc-cmd, which extracts the adresses of all original committers of the modified lines. In this case it was useless, but when I changed some code, I would like

[dev] [tabbed] Port to libdraw

2014-01-22 Thread Gregor Best
Hi people, as threatened on IRC, I ported tabbed to DWM's libdraw. I removed the cursor handling functions from libdraw to reduce the SLOC count, but taking {drw,util}.[ch] verbatim from DWM works. This way, changes in DWM's drawing, such as the XFT or Pango patches, can trivially be applied to t

[dev] [dmenu] Unintentional fallthrough in xft-patch

2014-01-22 Thread Hans-Peter Deifel
Hi, The patch on [1] introduces an unintentional fallthrough in a case-statement. Here is the relevant part of the patch: @@ -359,7 +376,8 @@ keypress(XKeyEvent *ev) { case XK_Return: case XK_KP_Enter: puts((sel && !(ev->state & ShiftMask)) ? sel->text : text); -