mirror of https://gitlab.com/basile.b/dexed.git
fixup previous commit, no need to yield the range
This commit is contained in:
parent
09fb838463
commit
9281c90c28
|
@ -2704,7 +2704,7 @@ begin
|
||||||
and (tk1^.Data[1] in ['*','+']) and (tk2^.offset > p) then
|
and (tk1^.Data[1] in ['*','+']) and (tk2^.offset > p) then
|
||||||
begin
|
begin
|
||||||
r.init(tk1^.Data);
|
r.init(tk1^.Data);
|
||||||
r.popUntil(#10)^.popFront^.yield;
|
r.popUntil(#10)^.popFront;
|
||||||
if not r.empty then
|
if not r.empty then
|
||||||
r.popWhile([' ', #9]);
|
r.popWhile([' ', #9]);
|
||||||
if not r.empty then
|
if not r.empty then
|
||||||
|
|
Loading…
Reference in New Issue