summaryrefslogtreecommitdiff
path: root/src/buffer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.cc')
-rw-r--r--src/buffer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.cc b/src/buffer.cc
index fd8e0c4c..c968690f 100644
--- a/src/buffer.cc
+++ b/src/buffer.cc
@@ -575,9 +575,9 @@ BufferCoord Buffer::advance(BufferCoord coord, ByteCount count) const
count += coord.column;
while (count < 0)
{
- count += m_lines[--line].length();
- if (line < 0)
+ if (--line < 0)
return {0, 0};
+ count += m_lines[line].length();
}
return { line, count };
}