summaryrefslogtreecommitdiff
path: root/src/buffer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.cc')
-rw-r--r--src/buffer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.cc b/src/buffer.cc
index 2422e7ac..cd45273f 100644
--- a/src/buffer.cc
+++ b/src/buffer.cc
@@ -731,9 +731,9 @@ ByteCount Buffer::offset(BufferCoord c) const
bool Buffer::is_valid(BufferCoord c) const
{
- return (c.line < line_count() and c.column < m_lines[c.line].length()) or
- (c.line == line_count() - 1 and c.column == m_lines.back().length()) or
- (c.line == line_count() and c.column == 0);
+ return (c.line < line_count() and c.column < m_lines[c.line].length()) or
+ (c.line == line_count() - 1 and c.column == m_lines.back().length()) or
+ (c.line == line_count() and c.column == 0);
}
bool Buffer::is_end(BufferCoord c) const