mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:58:06 +02:00
Jedi code format: Fix bug when obfuscating only selected text.
(cherry picked from commit 2b70328d5d
)
This commit is contained in:
parent
57f4185083
commit
323d21fc92
@ -49,7 +49,7 @@ implementation
|
||||
|
||||
uses
|
||||
JcfStringUtils,
|
||||
SourceToken, Tokens, ParseTreeNodeType, FormatFlags;
|
||||
SourceToken, Tokens, ParseTreeNodeType, FormatFlags, Converter;
|
||||
|
||||
function CommentMustStay(const pc: TSourceToken): boolean;
|
||||
var
|
||||
@ -77,6 +77,9 @@ begin
|
||||
(StrLeft(pc.SourceCode, FORMAT_COMMENT_PREFIX_LEN) = FORMAT_COMMENT_PREFIX)) then
|
||||
Result := True;
|
||||
|
||||
// these comments are used to process only selected text.
|
||||
if (pc.CommentStyle in CURLY_COMMENTS) and ((pc.SourceCode = FORMAT_START) or (pc.SourceCode = FORMAT_END)) then
|
||||
Result := True;
|
||||
end;
|
||||
|
||||
constructor TRemoveComment.Create;
|
||||
|
@ -106,6 +106,10 @@ type
|
||||
property ShowTree: boolean Read fbShowParseTree Write fbShowParseTree;
|
||||
end;
|
||||
|
||||
const
|
||||
FORMAT_START = '{<JCF_!*$>}';
|
||||
FORMAT_END = '{</JCF_!*$>}';
|
||||
|
||||
implementation
|
||||
|
||||
uses
|
||||
@ -371,9 +375,6 @@ end;
|
||||
|
||||
procedure TConverter.ConvertPart(const piStartIndex, piEndIndex: Integer;
|
||||
aOnlyOutputSelection: boolean);
|
||||
const
|
||||
FORMAT_START = '{<JCF_!*$>}';
|
||||
FORMAT_END = '{</JCF_!*$>}';
|
||||
var
|
||||
liRealInputStart, liRealInputEnd: Integer;
|
||||
liOutputStart, liOutputEnd: Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user