[dev] [dmenu][PATCH] Add _XOPEN_SOURCE=500 define

2015-02-22 Thread Roberto E. Vargas Caballero
usleep needs _XOPEN_SOURCE=500 or _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED. Some system publish it with BSD_SOURCE but not all. --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index c0d466b..a641d56 100644 --- a/config.mk +++ b/config.mk @@ -1

Re: [dev] keyboard layouts and shorcuts

2015-02-22 Thread Quentin Rameau
I am also for keycodes. I patched my suckless softwares to handle keycodes instead of keysyms. On Thu, Feb 19, 2015 at 6:44 PM, Dmitrij D. Czarkoff wrote: > Markus Teich said: >> sure. Unfortunately I see no easy way of achieving that. Either use the >> keycodes, which are layout agnostic, but ha

Re: [dev] [st] [PATCH] Let curses do the dirty work for flash

2015-02-22 Thread k0ga
Applied, thanks.

[dev] [sbase] [PATCH] Replace strlen with unary_n to test zero length.

2015-02-22 Thread noname
--- test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.c b/test.c index 660048a..957b205 100644 --- a/test.c +++ b/test.c @@ -100,7 +100,7 @@ noarg(char **argv) static int onearg(char **argv) { - return strlen(argv[0]); + return unary_n(argv[0]); } s

Re: [dev] [sbase] [PATCH] Replace strlen with unary_n to test zero length.

2015-02-22 Thread Dimitris Papastamos
Applied, thanks!