Don't move point in `exif-parse-buffer'
* lisp/image/exif.el (exif-parse-buffer): Don't move point (bug#46552).
This commit is contained in:
parent
b39ac4c85a
commit
64ef8ff74d
1 changed files with 3 additions and 2 deletions
|
|
@ -118,8 +118,9 @@ If the data is invalid, an `exif-error' is signaled."
|
|||
dest))
|
||||
(when-let ((app1 (cdr (assq #xffe1 (exif--parse-jpeg)))))
|
||||
(exif--parse-exif-chunk app1))))
|
||||
(when-let ((app1 (cdr (assq #xffe1 (exif--parse-jpeg)))))
|
||||
(exif--parse-exif-chunk app1)))))
|
||||
(save-excursion
|
||||
(when-let ((app1 (cdr (assq #xffe1 (exif--parse-jpeg)))))
|
||||
(exif--parse-exif-chunk app1))))))
|
||||
|
||||
(defun exif-orientation (exif)
|
||||
"Return the orientation (in degrees) in EXIF.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue