Re: Replace xfree with free on csh(1)

2015-11-12 Thread Michael McConville
Ricardo Mestre wrote: > It seems I was still with mangling problems, does it look good now? You're still wrapping a couple lines in the second-to-last hunk, but I fixed them manually. ok mmcc@ > Index: alloc.c > === > RCS file: /cvs

Re: Replace xfree with free on csh(1)

2015-11-12 Thread Ricardo Mestre
It seems I was still with mangling problems, does it look good now? Index: alloc.c === RCS file: /cvs/src/bin/csh/alloc.c,v retrieving revision 1.16 diff -u -p -u -r1.16 alloc.c --- alloc.c 8 Feb 2015 06:01:25 - 1.16 +++

Re: Replace xfree with free on csh(1)

2015-11-12 Thread Ricardo Mestre
Hello Michael! Sorry, mea culpa. I hope it's not mangled now: Index: alloc.c === RCS file: /cvs/src/bin/csh/alloc.c,v retrieving revision 1.16 diff -u -p -u -r1.16 alloc.c --- alloc.c8 Feb 2015 06:01:25 -1.16 +++ alloc.c

Re: Replace xfree with free on csh(1)

2015-11-12 Thread Michael McConville
Ricardo Mestre wrote: > Hi, > > On csh(1), since Free() just calls free() and xfree() is a #define to > Free() then free() can be called directly instead of xfree() and the > #define can be removed, is this approach correct? Seems like this patch is mangled, unless it's something on my machine.

Replace xfree with free on csh(1)

2015-11-12 Thread Ricardo Mestre
Hi, On csh(1), since Free() just calls free() and xfree() is a #define to Free() then free() can be called directly instead of xfree() and the #define can be removed, is this approach correct? Index: alloc.c === RCS file: /cvs/sr