From cce3749761fc036f196cb50319c591f5d1fa5625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Tom=C3=A1s?= Date: Sat, 20 Jun 2020 16:56:29 -0300 Subject: Fix cursor jumping to bottom of screen on rseek --- point.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'point.cpp') diff --git a/point.cpp b/point.cpp index 235d93c..8f05a46 100644 --- a/point.cpp +++ b/point.cpp @@ -148,7 +148,7 @@ struct Point { uint64_t seek(uint8_t c, uint64_t limit) { uint64_t travel_distance = 0; while (!at_end() && next_byte() != c && travel_distance < limit) { - move_forward(); + (*this)++; travel_distance++; } return travel_distance; @@ -157,7 +157,7 @@ struct Point { uint64_t rseek(uint8_t c, uint64_t limit) { uint64_t travel_distance = 0; while (!at_start() && prev_byte() != c && travel_distance < limit) { - move_backward(); + (*this)--; travel_distance++; } return travel_distance; -- cgit v1.2.3