From 04ae48c346d0c2c6d6bcd4bbb7f6ff0ab88c1bd8 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 14 Nov 2013 00:12:15 +0000 Subject: indent cleanup, correct erroneous 3 spaces indent --- src/buffer.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/buffer.cc') 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 -- cgit v1.2.3