Re: [PATCH] Avoid starting a comment with */*

2014-07-17 Thread Keith Packard
Peter Harris phar...@opentext.com writes: Even though -Wcomment doesn't mind it (in gcc or clang), the appearance of */* confuses the syntax highlighter of some editors (eg. vim), and causes warnings in MSVC. Merged. 8b36e1e..5eb7769 master - master -- keith.pack...@intel.com

Re: [PATCH] Avoid starting a comment with */*

2014-03-11 Thread Peter Harris
On 2014-03-11 01:45, Thomas Klausner wrote: -extern _X_EXPORT Bool AddCallback(CallbackListPtr * /*pcbl */ , - CallbackProcPtr /*callback */ , - void */*data */ ); +extern _X_EXPORT Bool AddCallback(CallbackListPtr *pcbl, +

[PATCH] Avoid starting a comment with */*

2014-03-10 Thread Peter Harris
Even though -Wcomment doesn't mind it (in gcc or clang), the appearance of */* confuses the syntax highlighter of some editors (eg. vim), and causes warnings in MSVC. Signed-off-by: Peter Harris phar...@opentext.com --- include/callback.h | 18 ++-- include/colormap.h | 16

Re: [PATCH] Avoid starting a comment with */*

2014-03-10 Thread Keith Packard
Peter Harris phar...@opentext.com writes: Even though -Wcomment doesn't mind it (in gcc or clang), the appearance of */* confuses the syntax highlighter of some editors (eg. vim), and causes warnings in MSVC. Signed-off-by: Peter Harris phar...@opentext.com Nice clean up, thanks.

Re: [PATCH] Avoid starting a comment with */*

2014-03-10 Thread Thomas Klausner
On Mon, Mar 10, 2014 at 06:31:33PM -0400, Peter Harris wrote: Even though -Wcomment doesn't mind it (in gcc or clang), the appearance of */* confuses the syntax highlighter of some editors (eg. vim), and causes warnings in MSVC. Signed-off-by: Peter Harris phar...@opentext.com ... diff