Avoid assertion violations in buf_bytepos_to_charpos

* src/marker.c (buf_bytepos_to_charpos): Disable the assertion
regarding bytepos always at the head byte of a multibyte
sequence.
This commit is contained in:
Eli Zaretskii 2019-03-04 19:22:23 +02:00
parent 6a1dcf594a
commit f06405cbf8

View file

@ -332,9 +332,11 @@ buf_bytepos_to_charpos (struct buffer *b, ptrdiff_t bytepos)
if (best_above == best_above_byte)
return bytepos;
#if 0
/* Check bytepos is not in the middle of a character. */
eassert (bytepos >= BUF_Z_BYTE (b)
|| CHAR_HEAD_P (BUF_FETCH_BYTE (b, bytepos)));
#endif
best_below = BEG;
best_below_byte = BEG_BYTE;