Re: [PATCH v2 2/2] kconfig: trivial - adjust comments

2014-10-10 Thread Paul Bolle
Hi Martin, I haven't yet dared to review 1/2, which is the interesting change. So I cheated and skipped to 2/2. On Mon, 2014-09-22 at 19:13 +0200, Martin Walch wrote: > Replace any C99 comments with traditional ones (/*...*/). Perhaps you could split those changes off in a separate, trivial patc

[PATCH v2 2/2] kconfig: trivial - adjust comments

2014-09-22 Thread Martin Walch
Replace any C99 comments with traditional ones (/*...*/). Also fix the contents of two comments: 1) the second occurrence of (a='b') && (a!='c') -> 'b'='c' ? 'n' : a='b' is probably copy & paste from above, missing the adjustment corresponding to the code. It should probably read (a!='b') && (a='

[RESEND PATCH v2 2/2] kconfig: trivial - adjust comments in expr.c

2014-06-10 Thread Martin Walch
From: Martin Walch Replace any C99 comments with traditional ones (/*...*/). Also fix the contents of two comments: 1) the second occurrence of (a='b') && (a!='c') -> 'b'='c' ? 'n' : a='b' is probably copy & paste from above, missing the adjustment corresponding to the code. It should probably

[PATCH v2 2/2] kconfig: trivial - adjust comments

2014-04-18 Thread Martin Walch
From: Martin Walch Date: Fri, 18 Apr 2014 22:15:37 +0200 Subject: [PATCH v2 2/2] kconfig: trivial - adjust comments Replace any C99 comments with traditional ones (/*...*/). Also fix the contents of two comments: 1) the second occurrence of (a='b') && (a!='c')