File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tests/SIL.Machine.Tests/Corpora Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,8 @@ public UpdateUsfmParserHandler(
8484 _rows = _rows
8585 . Where ( r => r . Refs . Count > 0 )
8686 . OrderBy (
87- r => r . Refs [ 0 ] ,
88- compareSegments ? ScriptureRefComparer . Default : ScriptureRefComparer . IgnoreSegments
87+ r => r . Refs [ 0 ] . VerseRef ,
88+ compareSegments ? VerseRefComparer . Default : VerseRefComparer . IgnoreSegments
8989 )
9090 . ToArray ( ) ;
9191 _verseRows = new List < int > ( ) ;
Original file line number Diff line number Diff line change @@ -1396,6 +1396,7 @@ private static string UpdateUsfm(
13961396 preserveParagraphStyles ,
13971397 usfmUpdateBlockHandlers ,
13981398 remarks ,
1399+ ( _ ) => false ,
13991400 compareSegments
14001401 ) ;
14011402 }
@@ -1412,6 +1413,7 @@ private static string UpdateUsfm(
14121413 preserveParagraphStyles ,
14131414 usfmUpdateBlockHandlers ,
14141415 remarks ,
1416+ ( _ ) => false ,
14151417 compareSegments
14161418 ) ;
14171419 UsfmParser . Parse ( source , updater ) ;
You can’t perform that action at this time.
0 commit comments