aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2014-07-05 12:53:50 +0300
committerEli Zaretskii2014-07-05 12:53:50 +0300
commit546c26b394b5b9c14cfef71c36ba8d8f6af8217d (patch)
tree30a522afffd46f306769e06238c651971658879e /src/ChangeLog
parentf2c74bf38322ec715bb93c259e3570c015af78cf (diff)
downloademacs-546c26b394b5b9c14cfef71c36ba8d8f6af8217d.tar.gz
emacs-546c26b394b5b9c14cfef71c36ba8d8f6af8217d.zip
Fix bug #17944 with pos-visible-in-window-p when there's image at window start.
src/xdisp.c (pos_visible_p): Fix condition for finding CHARPOS by the first call to move_it_to.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a3210b557c7..89621bd54ec 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -3,6 +3,8 @@
3 * xdisp.c (pos_visible_p): If CHARPOS is at beginning of window, 3 * xdisp.c (pos_visible_p): If CHARPOS is at beginning of window,
4 and there is a display property at that position, don't call 4 and there is a display property at that position, don't call
5 move_it_to to move to a position before window start. (Bug#17942) 5 move_it_to to move to a position before window start. (Bug#17942)
6 Fix condition for finding CHARPOS by the first call to move_it_to.
7 (Bug#17944)
6 8
72014-07-05 Stefan Monnier <monnier@iro.umontreal.ca> 92014-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
8 10