On Sun, 18 May 2014 at 1:29:28 +0100, Carlos R. Mafra wrote:
> Subject: [PATCH] Coding style: Change 'foo * bar' to 'foo *bar' in function
> arguments
>
> Since 'foo' and 'bar' are not being multiplied...
>
> Done automatically with the sed script:
>
> /(/{
> s/ \* \([a-zA-Z]\)/ *\1/g
> }
Actually, it should be this:
/^[a-zA-Z][a-zA-Z]*.*(/{
s/ \* \([a-zA-Z]\)/ *\1/g
}
--
To unsubscribe, send mail to [email protected].
