/[emacs]/emacs/src/xterm.c
ViewVC logotype

Diff of /emacs/src/xterm.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.732 by monnier, Mon Apr 29 18:22:04 2002 UTC revision 1.733 by kfstorm, Wed May 8 21:32:00 2002 UTC
# Line 4116  x_draw_image_foreground (s) Line 4116  x_draw_image_foreground (s)
4116               the image.  I believe it's looking better if we do               the image.  I believe it's looking better if we do
4117               nothing here for mouse-face.  */               nothing here for mouse-face.  */
4118            if (s->hl == DRAW_CURSOR)            if (s->hl == DRAW_CURSOR)
4119              XDrawRectangle (s->display, s->window, s->gc, x, y,              {
4120                              s->img->width - 1, s->img->height - 1);                int r = s->img->relief;
4121                  if (r < 0) r = -r;
4122                  XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
4123                                  s->img->width + r*2 - 1, s->img->height + r*2 - 1);
4124                }
4125          }          }
4126      }      }
4127    else    else
# Line 4232  x_draw_image_foreground_1 (s, pixmap) Line 4236  x_draw_image_foreground_1 (s, pixmap)
4236               the image.  I believe it's looking better if we do               the image.  I believe it's looking better if we do
4237               nothing here for mouse-face.  */               nothing here for mouse-face.  */
4238            if (s->hl == DRAW_CURSOR)            if (s->hl == DRAW_CURSOR)
4239              XDrawRectangle (s->display, pixmap, s->gc, x, y,              {
4240                              s->img->width - 1, s->img->height - 1);                int r = s->img->relief;
4241                  if (r < 0) r = -r;
4242                  XDrawRectangle (s->display, s->window, s->gc, x - r, y - r,
4243                                  s->img->width + r*2 - 1, s->img->height + r*2 - 1);
4244                }
4245          }          }
4246      }      }
4247    else    else

Legend:
Removed from v.1.732  
changed lines
  Added in v.1.733

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26