Re: [dev] [sbase] [patch] RFC for initial version of xargs(1)

2014-01-03 Thread sin
Added manpage and fixed some bugs. >From cd030b4888f1e4a7d32819f447a421e6bf21de4f Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 3 Jan 2014 11:52:47 + Subject: [PATCH] Add initial version of xargs(1) --- Makefile | 1 + xargs.1 | 28 +++ xargs.c | 258

Re: [dev] [PATCH] Fix truecolor escapes, when both bg and fg are set

2014-01-03 Thread Roberto E. Vargas Caballero
Good catch, I'll apply it On Fri, Jan 03, 2014 at 03:24:24PM +0100, Amadeusz Sławiński wrote: > for example > echo -e "\e[48;2;255;0;0m\e[38;2;0;0;255m test " > should render on red bg with blue fg > > also now elinks works correctly when using 'truecolor' option > in preferences > > Signed-off-

[dev] [PATCH] Fix truecolor escapes, when both bg and fg are set

2014-01-03 Thread Amadeusz Sławiński
for example echo -e "\e[48;2;255;0;0m\e[38;2;0;0;255m test " should render on red bg with blue fg also now elinks works correctly when using 'truecolor' option in preferences Signed-off-by: Amadeusz Sławiński --- st.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/st.c b/st.c index 4fb33

Re: [dev] [sbase] [patch] RFC for initial version of xargs(1)

2014-01-03 Thread sin
Fixed `argb' buffer overflow and incorrect parsing of single and double quotes. >From 220a946d61488f9fdb6f889ba9711e793281d602 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 3 Jan 2014 11:52:47 + Subject: [PATCH v2] Add initial version of xargs(1) --- Makefile | 1 + xargs.c | 238

Re: [dev] [sbase] [patch] RFC for initial version of xargs(1)

2014-01-03 Thread sin
On Fri, Jan 03, 2014 at 11:56:05AM +, sin wrote: > Hi, > > This is a quick hack implementing xargs(1). Many features > are currently missing and there is a known issue with overflowing > the `argb' buffer. > > Any comments? There is also an issue with unterminated quotes. Something like th

[dev] [sbase] [patch] RFC for initial version of xargs(1)

2014-01-03 Thread sin
Hi, This is a quick hack implementing xargs(1). Many features are currently missing and there is a known issue with overflowing the `argb' buffer. Any comments? bye, sin >From 731875ba179abbe8604d8979510195fa8d85ac20 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 3 Jan 2014 11:52:47 + Subje