SVN commit 880601 by porten: Merged revision 880599: One more hack for HTML comments in JS: all other browsers all for C-style comments before -->. I removed the C++ comment check for the beginning-of-line marker as I don't really see its purpose anymore. M +1 -1 lexer.cpp --- branches/KDE/4.1/kdelibs/kjs/lexer.cpp #880600:880601 @@ -475,7 +475,7 @@ if (!done) shift(1); #ifndef KJS_PURE_ECMA - if (state != Start && state != InSingleLineComment) + if (state != Start && state != InMultiLineComment) bol = false; #endif }