projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef922e7
)
Fix stray CHECK_FIXNUM_COERCE_MARKER
author
Paul Eggert
<eggert@cs.ucla.edu>
Thu, 13 Dec 2018 21:03:54 +0000
(13:03 -0800)
committer
Paul 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
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 4d9990cf46c1de7052f7d7f1be76f31b784967b7..cb21397e7b95044037d85e4345ed7de2864334d2 100644
(file)
--- 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);
}