aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-02-23 10:35:59 +0200
committerEli Zaretskii2019-02-23 10:35:59 +0200
commitc86d41911dad6b3ef799d5cda5778768b2aa3aec (patch)
tree1068624a4c6b1e6e0ed10795fc3229db55e50065
parent6d46fa961c93d435e70b046ef2c400b81934ace8 (diff)
downloademacs-c86d41911dad6b3ef799d5cda5778768b2aa3aec.tar.gz
emacs-c86d41911dad6b3ef799d5cda5778768b2aa3aec.zip
; * src/image.c (imagemagick_load, svg_load): Fix typos in comments.
-rw-r--r--src/image.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/image.c b/src/image.c
index 2d5a882232f..50515e1a422 100644
--- a/src/image.c
+++ b/src/image.c
@@ -8941,8 +8941,8 @@ imagemagick_load (struct frame *f, struct image *img)
8941#endif 8941#endif
8942 success_p = imagemagick_load_image (f, img, 0, 0, SSDATA (file)); 8942 success_p = imagemagick_load_image (f, img, 0, 0, SSDATA (file));
8943 } 8943 }
8944 /* Else its not a file, its a lisp object. Load the image from a 8944 /* Else it's not a file, it's a Lisp object. Load the image from a
8945 lisp object rather than a file. */ 8945 Lisp object rather than a file. */
8946 else 8946 else
8947 { 8947 {
8948 Lisp_Object data; 8948 Lisp_Object data;
@@ -9250,8 +9250,8 @@ svg_load (struct frame *f, struct image *img)
9250 SSDATA (ENCODE_FILE (file))); 9250 SSDATA (ENCODE_FILE (file)));
9251 xfree (contents); 9251 xfree (contents);
9252 } 9252 }
9253 /* Else its not a file, its a lisp object. Load the image from a 9253 /* Else it's not a file, it's a Lisp object. Load the image from a
9254 lisp object rather than a file. */ 9254 Lisp object rather than a file. */
9255 else 9255 else
9256 { 9256 {
9257 Lisp_Object data, original_filename; 9257 Lisp_Object data, original_filename;