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