From ec8a1a465ef6b4cbcba9b7b9b9cbdf87e39c7bba Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 12 May 2018 18:58:10 +0200 Subject: Bug 727103 - Misparsed comments leading to missing call graph Handling comment block in scanner.l and code.l in an analogous way. The problem is caused by a non terminated comment bock in a comment block. It is strongly advised not to use comment blocks inside other comment blocks and otherwise fix the message. --- src/code.l | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/code.l b/src/code.l index 74b360f..5c9e289 100644 --- a/src/code.l +++ b/src/code.l @@ -3573,6 +3573,9 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" endFontClass(); } } +[^\*\n]+ { + g_code->codify(yytext); + } <*>"/*" { startFontClass("comment"); g_code->codify(yytext); -- cgit v0.12