1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-26 10:49:33 +00:00

Improve XPM load failure message (bug#33126)

* src/image.c (xpm_load_image): Only XPM3 is supported, so make that
explicit.
This commit is contained in:
Alan Third 2018-10-24 12:15:16 +01:00
parent f3d01d4653
commit f5f95838bd
2 changed files with 8 additions and 1 deletions

View File

@ -2616,6 +2616,13 @@ please call support for your X-server and see if you can get a fix.
If you do, please send it to bug-gnu-emacs@gnu.org so we can list it here.
* Runtime problems specific to macOS
** macOS doesn't come with libxpm, so only XPM3 is supported.
Libxpm is available for macOS as part of the XQuartz project.
* Build-time problems
** Configuration

View File

@ -4308,7 +4308,7 @@ xpm_load_image (struct frame *f,
return 1;
failure:
image_error ("Invalid XPM file (%s)", img->spec);
image_error ("Invalid XPM3 file (%s)", img->spec);
x_destroy_x_image (ximg);
x_destroy_x_image (mask_img);
x_clear_image (f, img);