summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-02-23 10:35:59 +0200
committerEli Zaretskii <eliz@gnu.org>2019-02-23 10:35:59 +0200
commitc86d41911dad6b3ef799d5cda5778768b2aa3aec (patch)
tree1068624a4c6b1e6e0ed10795fc3229db55e50065 /src
parent6d46fa961c93d435e70b046ef2c400b81934ace8 (diff)
downloademacs-c86d41911dad6b3ef799d5cda5778768b2aa3aec.tar.gz
; * src/image.c (imagemagick_load, svg_load): Fix typos in comments.
Diffstat (limited to 'src')
-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)
#endif
success_p = imagemagick_load_image (f, img, 0, 0, SSDATA (file));
}
- /* Else its not a file, its a lisp object. Load the image from a
- lisp object rather than a file. */
+ /* Else it's not a file, it's a Lisp object. Load the image from a
+ Lisp object rather than a file. */
else
{
Lisp_Object data;
@@ -9250,8 +9250,8 @@ svg_load (struct frame *f, struct image *img)
SSDATA (ENCODE_FILE (file)));
xfree (contents);
}
- /* Else its not a file, its a lisp object. Load the image from a
- lisp object rather than a file. */
+ /* Else it's not a file, it's a Lisp object. Load the image from a
+ Lisp object rather than a file. */
else
{
Lisp_Object data, original_filename;