fix minor bug in 'helpGoToEnd' function in line_gap.sml (we were meant to pass rStrTl and rLnTl, but we were passing empty lists instead which caused us to lose data)

This commit is contained in:
2024-10-30 10:53:17 +00:00
parent 16f65c0d9d
commit 446e335f54

View File

@@ -2057,8 +2057,8 @@ struct
, line + Vector.length rLnHd , line + Vector.length rLnHd
, rStrHd :: leftStrings , rStrHd :: leftStrings
, rLnHd :: leftLines , rLnHd :: leftLines
, [] , rStrTl
, [] , rLnTl
)) ))
| (_, _) => | (_, _) =>
(* rightStrings strings are empty, meaning we are at end and can return *) (* rightStrings strings are empty, meaning we are at end and can return *)