]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid printing garbled error message from image.el
authorEli Zaretskii <eliz@gnu.org>
Sat, 10 Feb 2018 07:51:00 +0000 (09:51 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 10 Feb 2018 07:51:00 +0000 (09:51 +0200)
* lisp/image.el (image--get-imagemagick-and-warn): Don't use
apostrophe in the error message, as that message is shown from a
unibyte buffer, and will run afoul of the default style of showing
quote characters.  (Bug#30405)

lisp/image.el

index 0fe03f55bbbdd17f44a26c00d589f8bf5517b81a..b021edb33dcabc295053efe84071cea42195589f 100644 (file)
@@ -977,7 +977,7 @@ default is 20%."
 
 (defun image--get-imagemagick-and-warn ()
   (unless (fboundp 'imagemagick-types)
-    (error "Can't rescale images without ImageMagick support"))
+    (error "Cannot rescale images without ImageMagick support"))
   (let ((image (image--get-image)))
     (image-flush image)
     (plist-put (cdr image) :type 'imagemagick)