diff options
| author | Glenn Morris | 2020-01-08 09:09:47 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-01-08 09:09:47 -0800 |
| commit | b968b733a2a0450eb7312a5e72c059ec3c59ddd9 (patch) | |
| tree | da0790ada823a4d7dee009e9df63b3b24d0d539b /src/image.c | |
| parent | f8a0b02949342b887822e7756fd36f06536c9c01 (diff) | |
| parent | 6cd9ccb0a28ec03ffe180b7429e0378511b7d459 (diff) | |
| download | emacs-b968b733a2a0450eb7312a5e72c059ec3c59ddd9.tar.gz emacs-b968b733a2a0450eb7312a5e72c059ec3c59ddd9.zip | |
Merge from origin/emacs-27
6cd9ccb0a2 (origin/emacs-27) Fix compression of directories in Dired
42329e6d3b ; * etc/NEWS: Review of the whole text.
af5709f16b Further enhancement on `tramp-file-local-name'
fb432446f5 Objective C Mode imenu: cease recognizing "functions" with...
a18373a999 ; * etc/NEWS: Update the text about the XDG_CONFIG_HOME/em...
73fd8a4b53 Fix BSD and macOS builds w.r.t. pthread_setname_np (bug#38...
f54b24304d Scale top-left coordinates in display-monitor-attributes-list
b46c75b16c xref-matches-in-files: Big Tramp speed-up
883b3490d8 * lisp/net/tramp.el (tramp-file-local-name): Remove `save-...
c01f55f126 Fix rendering bug due to unsynchronized cairo surface size...
075f21c0e3 Avoid crash by access to cleared img->pixmap->data/img->ma...
16c6dfb4f1 Avoid assertion violations in very small-height windows
9063124b91 Use pthread_setname_np to set thread name
# Conflicts:
# etc/NEWS
# lisp/net/tramp.el
Diffstat (limited to 'src/image.c')
| -rw-r--r-- | src/image.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/image.c b/src/image.c index b4ce08eeb3c..d3fec37186c 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -1242,6 +1242,10 @@ prepare_image_for_display (struct frame *f, struct image *img) | |||
| 1242 | if (img->cr_data == NULL || (cairo_pattern_get_type (img->cr_data) | 1242 | if (img->cr_data == NULL || (cairo_pattern_get_type (img->cr_data) |
| 1243 | != CAIRO_PATTERN_TYPE_SURFACE)) | 1243 | != CAIRO_PATTERN_TYPE_SURFACE)) |
| 1244 | { | 1244 | { |
| 1245 | /* Fill in the background/background_transparent field while | ||
| 1246 | we have img->pixmap->data/img->mask->data. */ | ||
| 1247 | IMAGE_BACKGROUND (img, f, img->pixmap); | ||
| 1248 | IMAGE_BACKGROUND_TRANSPARENT (img, f, img->mask); | ||
| 1245 | cr_put_image_to_cr_data (img); | 1249 | cr_put_image_to_cr_data (img); |
| 1246 | if (img->cr_data == NULL) | 1250 | if (img->cr_data == NULL) |
| 1247 | { | 1251 | { |