Parcourir la source

fx: 匹配类别汇聚时修正

master
SisMaker il y a 4 ans
Parent
révision
19bf571b06
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/eAcs.erl

+ 1
- 1
src/eAcs.erl Voir le fichier

@ -237,7 +237,7 @@ dealMatchList([{_OldByteIndex, OldMatchWordCnt, OldWordIndex} | LeftMatchList] =
CurStartIndex = CurWordIndex - MatchWordCnt,
OldStartIndex = OldWordIndex - OldMatchWordCnt,
if
CurStartIndex > OldWordIndex + 1 ->
CurStartIndex >= OldWordIndex + 1 ->
[{CurByteIndex, MatchWordCnt, CurWordIndex} | OldMatchList];
CurStartIndex >= OldStartIndex ->
[{CurByteIndex, CurWordIndex - OldStartIndex, CurWordIndex} | LeftMatchList];

Chargement…
Annuler
Enregistrer