diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-13 13:03:54 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-12-13 13:04:26 -0800 |
commit | d08b75abe0f0cf9ade812b189c374809a2c7836e (patch) | |
tree | ccbad9d7bd50816d5560c0119b1fe7a8b0245576 /src | |
parent | ef922e774ae33772ad86403332ddb5a1b49d268e (diff) | |
download | emacs-d08b75abe0f0cf9ade812b189c374809a2c7836e.tar.gz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |