emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r105731: Fix bug #9475 with alignment


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105731: Fix bug #9475 with alignment in *Completions* buffer.
Date: Sun, 11 Sep 2011 20:40:53 +0300
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105731
fixes bug(s): http://debbugs.gnu.org/9475
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sun 2011-09-11 20:40:53 +0300
message:
  Fix bug #9475 with alignment in *Completions* buffer.
  
   src/xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
   2011-08-30 (revision 105619).
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-09-11 14:46:38 +0000
+++ b/src/ChangeLog     2011-09-11 17:40:53 +0000
@@ -1,3 +1,8 @@
+2011-09-11  Eli Zaretskii  <address@hidden>
+
+       * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
+       2011-08-30 (revision 105619).  (Bug#9475)
+
 2011-09-11  Lars Magne Ingebrigtsen  <address@hidden>
 
        * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2011-09-10 15:23:25 +0000
+++ b/src/xdisp.c       2011-09-11 17:40:53 +0000
@@ -23251,6 +23251,7 @@
       if (FRAME_WINDOW_P (it->f))
        {
          append_stretch_glyph (it, object, width, height, ascent);
+         it->pixel_width = width;
          it->ascent = it->phys_ascent = ascent;
          it->descent = it->phys_descent = height - it->ascent;
          it->nglyphs = width > 0 && height > 0 ? 1 : 0;
@@ -23265,7 +23266,6 @@
          while (n--)
            tty_append_glyph (it);
          it->object = o_object;
-         it->pixel_width = width;
        }
     }
 }


reply via email to

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