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
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
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);
-