From: YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
To: 17115@debbugs.gnu.org
Subject: bug#17115: 24.3.50; possible bug in drawing images with box on W32
Date: Thu, 27 Mar 2014 13:48:10 +0900 [thread overview]
Message-ID: <wl7g7g4585.wl%mituharu@math.s.chiba-u.ac.jp> (raw)
In-Reply-To: <wlr45ojrb2.wl%mituharu@math.s.chiba-u.ac.jp>
>>>>> On Thu, 27 Mar 2014 11:42:09 +0900, YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> said:
> Recently I found a bug (which is different from Bug#17114) in drawing
> images with box on the Mac port, and I suspect it also happens on W32
> because their code are similar (though I can't test it). Could
> someone try if it is reproducible on W32 and if so, please try the
> patch at the end?
> Steps to reproduce:
> 1. $ emacs -Q -D &
> 2. (insert-image (create-image "splash.png")
> (propertize " " 'face '(:box (:line-width 5)))) C-j
> 3. C-p C-p
> Result:
> The left half of the character `t' just after the image gets erased.
Probably "splash.png" in Step 2 should have been "splash.xpm" on W32
so that s->img->mask != NULL holds.
And I managed to reproduce the similar problem also on X11 by
replacing Step 2 with:
2'. (insert-image (create-image "splash.png" nil nil :margin 10)
(propertize " " 'face '(:box (:line-width 5)))) C-j
Below is a patch for X11.
YAMAMOTO Mitsuharu
mituharu@math.s.chiba-u.ac.jp
=== modified file 'src/xterm.c'
*** src/xterm.c 2014-03-21 19:04:57 +0000
--- src/xterm.c 2014-03-27 04:34:57 +0000
***************
*** 2402,2416 ****
{
int x = s->x;
int y = s->y;
if (s->first_glyph->left_box_line_p
&& s->slice.x == 0)
! x += box_line_hwidth;
if (s->slice.y == 0)
y += box_line_vwidth;
! x_draw_glyph_string_bg_rect (s, x, y, s->background_width, height);
}
s->background_filled_p = 1;
--- 2402,2420 ----
{
int x = s->x;
int y = s->y;
+ int width = s->background_width;
if (s->first_glyph->left_box_line_p
&& s->slice.x == 0)
! {
! x += box_line_hwidth;
! width -= box_line_hwidth;
! }
if (s->slice.y == 0)
y += box_line_vwidth;
! x_draw_glyph_string_bg_rect (s, x, y, width, height);
}
s->background_filled_p = 1;
next prev parent reply other threads:[~2014-03-27 4:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-27 2:42 bug#17115: 24.3.50; possible bug in drawing images with box on W32 YAMAMOTO Mitsuharu
2014-03-27 4:48 ` YAMAMOTO Mitsuharu [this message]
2014-03-27 16:29 ` Eli Zaretskii
2014-03-28 0:54 ` YAMAMOTO Mitsuharu
2014-03-28 7:25 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=wl7g7g4585.wl%mituharu@math.s.chiba-u.ac.jp \
--to=mituharu@math.s.chiba-u.ac.jp \
--cc=17115@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.