]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix stray CHECK_FIXNUM_COERCE_MARKER
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 13 Dec 2018 21:03:54 +0000 (13:03 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 13 Dec 2018 21:04:26 +0000 (13:04 -0800)
* src/xdisp.c (Fbidi_resolved_levels): Don’t allow a marker arg;
markers are character positions not vertical positions.

src/xdisp.c

index 4d9990cf46c1de7052f7d7f1be76f31b784967b7..cb21397e7b95044037d85e4345ed7de2864334d2 100644 (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);
     }