diff options
Diffstat (limited to 'lisp/image.el')
-rw-r--r-- | lisp/image.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/image.el b/lisp/image.el index b02349131de..1c268c4fb08 100644 --- a/lisp/image.el +++ b/lisp/image.el @@ -343,7 +343,7 @@ of image data. If that doesn't work, and SOURCE is a file name, use its file extension as image type. Optional DATA-P non-nil means SOURCE is a string containing image data." (when (and (not data-p) (not (stringp source))) - (error "Invalid image file name `%s'" source)) + (error "Invalid image file name ā%sā" source)) (unless type (setq type (if data-p (image-type-from-data source) @@ -351,7 +351,7 @@ Optional DATA-P non-nil means SOURCE is a string containing image data." (image-type-from-file-name source)))) (or type (error "Cannot determine image type"))) (or (memq type (and (boundp 'image-types) image-types)) - (error "Invalid image type `%s'" type)) + (error "Invalid image type ā%sā" type)) type) |