summaryrefslogtreecommitdiffstats
path: root/format.c
diff options
context:
space:
mode:
authornicm <nicm>2020-04-18 09:00:31 +0000
committernicm <nicm>2020-04-18 09:00:31 +0000
commitc87595326c69b3a82175268136f901199ff3cead (patch)
treee5a84eb0e1475aeb23e6a1541ff596d041eb3de3 /format.c
parentb0a37e7514f2e08a9a8315cc68add4f0a53ed2af (diff)
Use peek line function instead of hoking in the array directly.
Diffstat (limited to 'format.c')
-rw-r--r--format.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/format.c b/format.c
index b410f46f..53ef1604 100644
--- a/format.c
+++ b/format.c
@@ -977,7 +977,7 @@ format_grid_word(struct grid *gd, u_int x, u_int y)
if (x == 0) {
if (y == 0)
break;
- gl = &gd->linedata[y - 1];
+ gl = grid_peek_line(gd, y - 1);
if (~gl->flags & GRID_LINE_WRAPPED)
break;
y--;
@@ -993,7 +993,7 @@ format_grid_word(struct grid *gd, u_int x, u_int y)
if (end == 0 || x == end - 1) {
if (y == gd->hsize + gd->sy - 1)
break;
- gl = &gd->linedata[y];
+ gl = grid_peek_line(gd, y);
if (~gl->flags & GRID_LINE_WRAPPED)
break;
y++;