mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 05:19:14 +02:00
parent
583ff30428
commit
154e3f3567
@ -284,8 +284,9 @@ begin
|
||||
// codetools skip comment
|
||||
inc(CurCommentPos);
|
||||
while (CurCommentPos<CommentEnd) do begin
|
||||
if (Src[CurCommentPos]=#3) and (CurCommentPos+1<CommentEnd)
|
||||
and (Src[CurCommentPos]='}') then begin
|
||||
if (Src[CurCommentPos]=#3)
|
||||
and (CurCommentPos+1<CommentEnd) and (Src[CurCommentPos+1]='}')
|
||||
then begin
|
||||
inc(CurCommentPos,2);
|
||||
break;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user