Isaac Waldron wrote:
> Well, I've got my edited copies of all the kernel source files with all
> the C++ comments changed to C. Unfortunately, they were cvs'd a couple
> of days ago, which means they don't sync with Kevin's code, but if
> anyone wants a patch, then I can certainly crank it out and send it off.
> It's pretty likely to be a huge patch, though, just because of the sheer
> number of comments that had to be changed.
Okey dokey, guess I'll finally break down and move back to
the stone ages and use old C comments again.
Hope you didn't get carpel tunnel converting those comments
by hand. Here's a regexp to do it:
... | sed -e 's|//\(.*$\)|/*\1 */|' | ...
-Kevin