]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some commentary typos in exif.el
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 21 Sep 2019 16:27:53 +0000 (18:27 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 21 Sep 2019 16:27:53 +0000 (18:27 +0200)
* lisp/image/exif.el (exif--parse-exif-chunk)
(exif--parse-directory): Commentary typo fixes.

lisp/image/exif.el

index 2ec256bb2ee67ac296281405d7513d6d594c5c8a..2ceafd5bfc04b30d538926efb1a4bc462bf948d0 100644 (file)
@@ -107,7 +107,7 @@ The return value is a list of Exif items."
     (delete-region (point-min) (point))
     (let* ((endian-marker (exif--read-chunk 2))
            (le (cond
-                ;; "Morotola" is big-endian.
+                ;; "Motorola" is big-endian.
                 ((equal endian-marker "MM")
                  nil)
                 ;; "Intel" is little-endian.
@@ -141,7 +141,7 @@ The return value is a list of Exif items."
                   ;; The actual length is the number in this field
                   ;; times the "inherent" length of the field format
                   ;; (i.e., "long integer" (4 bytes) or "ascii" (1
-                  ;; byte).
+                  ;; byte)).
                   for length = (* (exif--read-number 4 le)
                                   (cdr field-format))
                   for value = (exif--read-number 4 le)
@@ -171,7 +171,7 @@ The return value is a list of Exif items."
           ;; keep parsing.
           (progn
             (goto-char (1+ next))
-            (append dir (exif--parse-directory le)))
+            (nconc dir (exif--parse-directory le)))
         ;; We've reached the end of the directories.
         dir))))