Re: [PATCH 2.6.24-rc8-mm1] checkpatch.pl -- Handle backslashes within quoted string.

2008-01-22 Thread Andy Whitcroft
On Sat, Jan 19, 2008 at 12:24:41AM +0900, Tetsuo Handa wrote: > > Tetsuo Handa wrote: > > checkpatch.pl was unable to handle \\ within quoted string. > > Sorry, I didn't know checkpatch 0.13 is available. No problem. Thanks for trying to fix it. :) -apw -- To unsubscribe from this list: send

Re: [PATCH 2.6.24-rc8-mm1] checkpatch.pl -- Handle backslashes within quoted string.

2008-01-18 Thread Tetsuo Handa
Tetsuo Handa wrote: > checkpatch.pl was unable to handle \\ within quoted string. Sorry, I didn't know checkpatch 0.13 is available. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.

[PATCH 2.6.24-rc8-mm1] checkpatch.pl -- Handle backslashes within quoted string.

2008-01-18 Thread Tetsuo Handa
checkpatch.pl was unable to handle \\ within quoted string. +static void test(char *sp, char *dp) +{ + if (*sp == '\\') { + *dp++ = '\\'; + *dp++ = '\\'; + } +} I hope this patch can fix it. But I don't know whether there is a side effect or not. Should we