emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r107998: Fix the changes in revisi


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r107998: Fix the changes in revision 107994 for bug #11464.
Date: Tue, 15 May 2012 19:17:42 +0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107998
fixes bug(s): http://debbugs.gnu.org/11464
committer: Eli Zaretskii <address@hidden>
branch nick: emacs-24
timestamp: Tue 2012-05-15 19:17:42 +0300
message:
  Fix the changes in revision 107994 for bug #11464.
  
   src/xdisp.c (pos_visible_p): Fix last change.
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-05-13 18:22:35 +0000
+++ b/src/ChangeLog     2012-05-15 16:17:42 +0000
@@ -1,3 +1,7 @@
+2012-05-15  Eli Zaretskii  <address@hidden>
+
+       * xdisp.c (pos_visible_p): Fix last change.  (Bug#11464)
+
 2012-05-13  Eli Zaretskii  <address@hidden>
 
        * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2012-05-13 18:22:35 +0000
+++ b/src/xdisp.c       2012-05-15 16:17:42 +0000
@@ -1313,7 +1313,7 @@
        visible_p = bottom_y > window_top_y;
       else if (top_y < it.last_visible_y)
        visible_p = 1;
-      if (bottom_y >= it.last_visible_y
+      if (bottom_y <= it.last_visible_y
          && it.bidi_p && it.bidi_it.scan_dir == -1
          && IT_CHARPOS (it) < charpos)
        {


reply via email to

[Prev in Thread] Current Thread [Next in Thread]