summaryrefslogtreecommitdiff
path: root/src/xfaces.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-08-15 17:16:28 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-08-15 17:19:17 -0700
commit59b5141dd7247260cbc383e0bc2afde139d55670 (patch)
treef9564ecfe86f381315848613ed2f4f8a2e9b2fbb /src/xfaces.c
parent208cfda3aa174d81952ff35272a467f8cb7e539e (diff)
downloademacs-59b5141dd7247260cbc383e0bc2afde139d55670.tar.gz
Fix quoting in Fformat calls
* src/image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load) (xpm_load, xpm_load_image, pbm_load, png_load_body) (jpeg_load_body, tiff_load, gif_load, imagemagick_load_image) (imagemagick_load, svg_load, svg_load_image, gs_load) (x_kill_gs_process): * src/lread.c (load_warn_old_style_backquotes): * src/xfaces.c (load_pixmap): * src/xselect.c (x_clipboard_manager_error_1): Quote diagnostics according to user preference when calling Fformat or its derivatives.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index ce300e7ef23..d519578198b 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -797,7 +797,7 @@ load_pixmap (struct frame *f, Lisp_Object name)
if (bitmap_id < 0)
{
- add_to_log ("Invalid or undefined bitmap `%s'", name);
+ add_to_log ("Invalid or undefined bitmap "uLSQM"%s"uRSQM, name);
bitmap_id = 0;
}
else