aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/image
diff options
context:
space:
mode:
authorŠtěpán Němec2020-03-01 18:50:14 +0100
committerŠtěpán Němec2020-04-18 17:10:02 +0200
commit067b0705986572e42687334c4eaf32988f22f680 (patch)
tree70129d8ec8e109cb64f895e462298adf2c2636e8 /lisp/image
parentf3b62b6c62c41d2e5d15418ea940bce6b11bdf7d (diff)
downloademacs-067b0705986572e42687334c4eaf32988f22f680.tar.gz
emacs-067b0705986572e42687334c4eaf32988f22f680.zip
; Fix some typos and doc issues (bug#40695)
Diffstat (limited to 'lisp/image')
-rw-r--r--lisp/image/exif.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/image/exif.el b/lisp/image/exif.el
index 065456dc318..6aeb52c726d 100644
--- a/lisp/image/exif.el
+++ b/lisp/image/exif.el
@@ -95,7 +95,7 @@ mirrored or not.")
95 "Parse FILE (a JPEG file) and return the Exif data, if any. 95 "Parse FILE (a JPEG file) and return the Exif data, if any.
96The return value is a list of Exif items. 96The return value is a list of Exif items.
97 97
98If the data is invalid, an `exif-error' is signalled." 98If the data is invalid, an `exif-error' is signaled."
99 (with-temp-buffer 99 (with-temp-buffer
100 (set-buffer-multibyte nil) 100 (set-buffer-multibyte nil)
101 (insert-file-contents-literally file) 101 (insert-file-contents-literally file)
@@ -105,7 +105,7 @@ If the data is invalid, an `exif-error' is signalled."
105 "Parse BUFFER (which should be a JPEG file) and return the Exif data, if any. 105 "Parse BUFFER (which should be a JPEG file) and return the Exif data, if any.
106The return value is a list of Exif items. 106The return value is a list of Exif items.
107 107
108If the data is invalid, an `exif-error' is signalled." 108If the data is invalid, an `exif-error' is signaled."
109 (setq buffer (or buffer (current-buffer))) 109 (setq buffer (or buffer (current-buffer)))
110 (with-current-buffer buffer 110 (with-current-buffer buffer
111 (if enable-multibyte-characters 111 (if enable-multibyte-characters