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:
@@ -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 *)
|
||||||
|
|||||||
Reference in New Issue
Block a user