From d08b75abe0f0cf9ade812b189c374809a2c7836e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 13 Dec 2018 13:03:54 -0800 Subject: [PATCH] Fix stray CHECK_FIXNUM_COERCE_MARKER MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * src/xdisp.c (Fbidi_resolved_levels): Don’t allow a marker arg; markers are character positions not vertical positions. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 4d9990cf46c..cb21397e7b9 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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); } -- 2.39.5