DisplayAtom: add utf8 sanity check

This commit is contained in:
Maxime Coste 2012-10-08 14:28:54 +02:00
parent 5602bc10e8
commit ed592a3005

View File

@ -1,6 +1,7 @@
#include "display_buffer.hh"
#include "assert.hh"
#include "utf8.hh"
namespace Kakoune
{
@ -11,6 +12,8 @@ DisplayLine::iterator DisplayLine::split(iterator it, BufferIterator pos)
assert(it->content.begin() < pos);
assert(it->content.end() > pos);
assert(utf8::is_character_start(pos));
DisplayAtom atom = *it;
atom.content.m_end = pos;
it->content.m_begin = pos;