diff options
author | Po Lu <luangruo@yahoo.com> | 2022-05-09 02:52:16 +0000 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-05-09 02:52:16 +0000 |
commit | d8a47823103da803b8274d790527f48d85a3f9b4 (patch) | |
tree | c251d28dd10d2f97857c1e0d6d3c640f8cd0a62c /src/image.c | |
parent | 6ec29d0566042c65956d46fd1a30c6182ce0e537 (diff) | |
download | emacs-d8a47823103da803b8274d790527f48d85a3f9b4.tar.gz emacs-d8a47823103da803b8274d790527f48d85a3f9b4.tar.bz2 emacs-d8a47823103da803b8274d790527f48d85a3f9b4.zip |
Fix stipple bitmap caching on Haiku
* src/image.c (image_create_bitmap_from_file): Set file name on
the bitmap rec on Haiku.
Diffstat (limited to 'src/image.c')
-rw-r--r-- | src/image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c index 6cd0aa48cfc..0c14173d833 100644 --- a/src/image.c +++ b/src/image.c @@ -781,7 +781,7 @@ image_create_bitmap_from_file (struct frame *f, Lisp_Object file) dpyinfo->bitmaps[id - 1].img = bitmap; dpyinfo->bitmaps[id - 1].depth = 1; - dpyinfo->bitmaps[id - 1].file = NULL; + dpyinfo->bitmaps[id - 1].file = xlispstrdup (file); dpyinfo->bitmaps[id - 1].height = height; dpyinfo->bitmaps[id - 1].width = width; dpyinfo->bitmaps[id - 1].refcount = 1; |