Fix stray CHECK_FIXNUM_COERCE_MARKER

* src/xdisp.c (Fbidi_resolved_levels): Don’t allow a marker arg;
markers are character positions not vertical positions.
This commit is contained in:
Paul Eggert 2018-12-13 13:03:54 -08:00
parent ef922e774a
commit d08b75abe0

View file

@ -23041,7 +23041,7 @@ Emacs UBA implementation, in particular with the test suite. */)
}
else
{
CHECK_FIXNUM_COERCE_MARKER (vpos);
CHECK_FIXNUM (vpos);
nrow = XFIXNUM (vpos);
}