mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-18 17:02:06 +03:00
fix Buffer::line_length for last line
This commit is contained in:
parent
275c0c67d4
commit
030450838a
@ -76,7 +76,7 @@ BufferSize Buffer::line_length(BufferPos line) const
|
||||
{
|
||||
assert(not m_lines.empty());
|
||||
BufferPos end = (line >= line_count() - 1) ?
|
||||
m_content.size() - 1 : m_lines[line + 1] - 1;
|
||||
m_content.size() : m_lines[line + 1] - 1;
|
||||
return end - m_lines[line];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user