emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/xdisp.c


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/xdisp.c
Date: Mon, 24 Apr 2006 00:22:26 +0000

Index: emacs/src/xdisp.c
diff -u emacs/src/xdisp.c:1.1093 emacs/src/xdisp.c:1.1094
--- emacs/src/xdisp.c:1.1093    Mon Apr 24 00:08:07 2006
+++ emacs/src/xdisp.c   Mon Apr 24 00:22:26 2006
@@ -19865,30 +19865,12 @@
       && it->current_x + width > it->last_visible_x)
     width = it->last_visible_x - it->current_x - 1;
 
-  if (width > 0 && height > 0)
+  if (width > 0 && height > 0 && it->glyph_row)
     {
-
-      if (face->box != FACE_NO_BOX && face->box_line_width != 0)
-       {
-         if (face->box_line_width > 0)
-           {
-             ascent += face->box_line_width;
-             height += face->box_line_width * 2;
-           }
-
-         if (it->start_of_box_run_p)
-           width += abs (face->box_line_width);
-         if (it->end_of_box_run_p)
-           width += abs (face->box_line_width);
-       }
-
-      if (it->glyph_row)
-       {
-         Lisp_Object object = it->stack[it->sp - 1].string;
-         if (!STRINGP (object))
-           object = it->w->buffer;
-         append_stretch_glyph (it, object, width, height, ascent);
-       }
+      Lisp_Object object = it->stack[it->sp - 1].string;
+      if (!STRINGP (object))
+       object = it->w->buffer;
+      append_stretch_glyph (it, object, width, height, ascent);
     }
 
   it->pixel_width = width;




reply via email to

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