A few places where // were used have crept into the source, and have been since at least the previous set of releases.
The rule of thumb for code is to write for the C89 standard, + C99 and compiler-specific additions that can easily be tested for and defined out or otherwise worked around if not supported by a particular compiler (restrict, all the GCC attribute stuff, etc...) or standard library.
BCPL-style comments aren't that. On the other hand, nobody's reported any problems compiling because of them. On the gripping hand, I suspect that 99.999% of Penns are compiled using gcc or one of the MS compilers -- a reason why we use so many of those compiler's extensions and hints.
I'm not sure if I should convert the offending comments to /**/ ones, or leave be until it becomes an issue. Comments?