Re: [hackers] [sbase][PATCH] printf: support escaping '%' with '%%'. See printf(1p) EXAMPLES section.

2016-06-28 Thread pranomestro
Dimitris Papastamos wrote: > Merged.

Re: [hackers] [sbase][PATCH] printf: support escaping '%' with '%%'. See printf(1p) EXAMPLES section.

2016-06-28 Thread pranomestro
Dimitris Papastamos wrote: > Merged. Thanks.

Re: [hackers] [dmenu][PATCH] fix: Do not crash on e.g. dmenu < /dev/null

2016-06-28 Thread Hiltjo Posthuma
On Tue, Jun 28, 2016 at 01:11:50AM -0400, S. Gilles wrote: > --- > dmenu.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/dmenu.c b/dmenu.c > index 0e7b70b..e926eca 100644 > --- a/dmenu.c > +++ b/dmenu.c > @@ -480,7 +480,7 @@ readstdin(void) > } > if (items)

Re: [hackers] [dmenu] import new drw from libsl and minor fixes.

2016-06-28 Thread Hiltjo Posthuma
On Sun, Jun 26, 2016 at 01:05:18PM -0700, Eric Pruitt wrote: > On Sun, Jun 26, 2016 at 02:53:03PM +0200, Hiltjo Posthuma wrote: > > I have pushed the drw changes to dmenu and dwm. > > > > Thanks for the contributions! > > > > It would be nice if people test it and report any regressions with their

[hackers] [dwm] config.def.h: style improvement, use color Scheme enum || Hiltjo Posthuma

2016-06-28 Thread git
commit 56a31dc4a7be459e3a1ea06d45427e1a4087a1a6 Author: Hiltjo Posthuma AuthorDate: Tue Jun 28 18:04:56 2016 +0200 Commit: Hiltjo Posthuma CommitDate: Tue Jun 28 18:04:56 2016 +0200 config.def.h: style improvement, use color Scheme enum diff --git a/config.def.h b/config.def.h index

[hackers] [dmenu] fix: Do not crash on e.g. dmenu < /dev/null || S. Gilles

2016-06-28 Thread git
commit 76eb5783046cf89ba6b7e9f8cdab35fe86d07a82 Author: S. Gilles AuthorDate: Tue Jun 28 01:11:50 2016 -0400 Commit: Hiltjo Posthuma CommitDate: Tue Jun 28 17:51:28 2016 +0200 fix: Do not crash on e.g. dmenu < /dev/null diff --git a/dmenu.c b/dmenu.c index 0e7b70b..e926eca 100644 --

[hackers] [dmenu] config.def.h: style improvement, use color Scheme enum || Hiltjo Posthuma

2016-06-28 Thread git
commit 3c91eed0fb74657c3fa25bc4fd65cd0aa88464c0 Author: Hiltjo Posthuma AuthorDate: Tue Jun 28 17:56:25 2016 +0200 Commit: Hiltjo Posthuma CommitDate: Tue Jun 28 17:56:25 2016 +0200 config.def.h: style improvement, use color Scheme enum diff --git a/config.def.h b/config.def.h index

[hackers] [scc] [tests] Import new tests for qc || Roberto E. Vargas Caballero

2016-06-28 Thread git
commit 43dd1d697192c9831ef353f9932884f88c0e6f4c Author: Roberto E. Vargas Caballero AuthorDate: Tue Jun 28 10:08:19 2016 +0200 Commit: Roberto E. Vargas Caballero CommitDate: Tue Jun 28 10:08:19 2016 +0200 [tests] Import new tests for qc diff --git a/tests/0070-cppif.c b/tests/0070-

Re: [hackers] [dmenu][PATCH] fix: Do not crash on e.g. dmenu < /dev/null

2016-06-28 Thread Markus Teich
S. Gilles wrote: > @@ -480,7 +480,7 @@ readstdin(void) > } > if (items) > items[i].text = NULL; > - inputw = TEXTW(items[imax].text); > + inputw = items ? TEXTW(items[imax].text) : 0; > lines = MIN(lines, i); > } Heyho, Nice catch! I didn't notice that reg