mirror of https://gitlab.com/basile.b/dexed.git
fixup 9f22e42fff
and 0923410ffc
This commit is contained in:
parent
9f22e42fff
commit
0730394875
|
@ -1071,7 +1071,6 @@ var
|
|||
t: PLexToken;
|
||||
i: integer;
|
||||
p: integer = 0;
|
||||
s: integer = 0;
|
||||
begin
|
||||
result := Point(0,0);
|
||||
i := getIndexOfTokenAt(tokens, caretPos) + 1;
|
||||
|
|
|
@ -538,6 +538,7 @@ var
|
|||
a: string;
|
||||
b: string;
|
||||
i: integer = 0;
|
||||
j: integer = 0;
|
||||
x: integer;
|
||||
y: integer;
|
||||
r: TStringRange = (ptr:nil; pos:0; len: 0);
|
||||
|
@ -588,11 +589,13 @@ begin
|
|||
// so fix the formatting and go back.
|
||||
else if r.empty() then
|
||||
begin
|
||||
if i > 128 then
|
||||
if j > 128 then
|
||||
exit;
|
||||
b := '%FIX% ' + b;
|
||||
j += 1;
|
||||
goto FIXED_AUTO;
|
||||
end;
|
||||
j := 0;
|
||||
// func args
|
||||
while not r.empty do
|
||||
begin
|
||||
|
|
Loading…
Reference in New Issue