aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-08-20 12:06:59 +0000
committerRichard M. Stallman2006-08-20 12:06:59 +0000
commit2eb582aeac58327a85bd1a5fbdb21fd95264293a (patch)
tree1b70475da8a033f9a3b74c70cdb72c1c7c4053c2
parentff458d812f881e04585bef6bdb96e3cd0ddd905d (diff)
downloademacs-2eb582aeac58327a85bd1a5fbdb21fd95264293a.tar.gz
emacs-2eb582aeac58327a85bd1a5fbdb21fd95264293a.zip
(load_pixmap): Add quotes in error message.
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 99355cca6af..3dc5ddc3401 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1189,7 +1189,7 @@ load_pixmap (f, name, w_ptr, h_ptr)
1189 1189
1190 if (bitmap_id < 0) 1190 if (bitmap_id < 0)
1191 { 1191 {
1192 add_to_log ("Invalid or undefined bitmap %s", name, Qnil); 1192 add_to_log ("Invalid or undefined bitmap `%s'", name, Qnil);
1193 bitmap_id = 0; 1193 bitmap_id = 0;
1194 1194
1195 if (w_ptr) 1195 if (w_ptr)