Re: [PATCH 1/1] makedevs: set path size to match linux

2017-06-27 Thread Maxime Coste
On Tue, Jun 27, 2017 at 01:18:14PM -0400, Michael Conrad wrote: > I guess I'll retract this, unless someone else knows something. I remember > someone warning about this behavior, but I can't find a reference and I just > tested on 32-bit and allocating stack buffers up to the maximum stack size >

Re: [PATCH] add paste implementation

2017-03-21 Thread Maxime Coste
testsuite/paste/paste-separate diff --git a/AUTHORS b/AUTHORS index fa58697f7..5c9a634c9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -178,3 +178,6 @@ Mike Frysinger <vap...@gentoo.org> Jie Zhang <jie.zh...@analog.com> fixed two bugs in msh and hush (exitcode of killed processes) + +

Re: [PATCH] add paste implementation

2017-03-15 Thread Maxime Coste
On Wed, Mar 15, 2017 at 10:29:10AM +0100, Bernhard Reutner-Fischer wrote: > On 10 March 2017 19:07:12 CET, Maxime Coste <ma...@kakoune.org> wrote: > >Hello, > > > >here is my stab at an implementation of patch, I hope this is the > >proper > >patch format

Re: [PATCH] add paste implementation

2017-03-14 Thread Maxime Coste
On Mon, Mar 13, 2017 at 09:30:56AM -0400, Jody Lee Bruchon wrote: > Given that BusyBox is intended to be as small as possible since it is > targeted at embedded platforms, I'd say that declaring variables inside of a > code block which are used only within a code block is better. Not only does

Re: [PATCH] add paste implementation

2017-03-13 Thread Maxime Coste
On Mon, Mar 13, 2017 at 06:54:17AM +, dietmar.schind...@manroland-web.com wrote: > > Von: walter harms > > Gesendet: Samstag, 11. März 2017 11:05 > > > > Am 10.03.2017 19:07, schrieb Maxime Coste: > > > ... > > > +for (int i = 0; i < file_count; +

Re: [PATCH] add paste implementation

2017-03-11 Thread Maxime Coste
rate diff --git a/AUTHORS b/AUTHORS index fa58697f7..5c9a634c9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -178,3 +178,6 @@ Mike Frysinger <vap...@gentoo.org> Jie Zhang <jie.zh...@analog.com> fixed two bugs in msh and hush (exitcode of killed processes) + +Maxime Coste <ma...@kakou

Re: [PATCH] add paste implementation

2017-03-11 Thread Maxime Coste
org> Jie Zhang <jie.zh...@analog.com> fixed two bugs in msh and hush (exitcode of killed processes) + +Maxime Coste <ma...@kakoune.org> +paste implementation diff --git a/coreutils/paste.c b/coreutils/paste.c new file mode 100644 index 0..34426fea2 --- /dev/null +++ b

Re: [PATCH] add paste implementation

2017-03-11 Thread Maxime Coste
Hello Xabier, On Sat, Mar 11, 2017 at 01:22:20PM +0100, Xabier Oneca -- xOneca wrote: > Hi Maxime, > > 2017-03-11 12:34 GMT+01:00 Maxime Coste <ma...@kakoune.org>: > > On Sat, Mar 11, 2017 at 12:18:42PM +0100, Xabier Oneca -- xOneca wrote: > >> > +//

Re: [PATCH] add paste implementation

2017-03-11 Thread Maxime Coste
0644 testsuite/paste/paste-separate diff --git a/AUTHORS b/AUTHORS index fa58697f7..5c9a634c9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -178,3 +178,6 @@ Mike Frysinger <vap...@gentoo.org> Jie Zhang <jie.zh...@analog.com> fixed two bugs in msh and hush (exitcode of killed processes)

[PATCH] add paste implementation

2017-03-10 Thread Maxime Coste
/paste-separate diff --git a/AUTHORS b/AUTHORS index fa58697f7..5c9a634c9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -178,3 +178,6 @@ Mike Frysinger <vap...@gentoo.org> Jie Zhang <jie.zh...@analog.com> fixed two bugs in msh and hush (exitcode of killed processes) + +Maxi