]> code.delx.au - gnu-emacs/blobdiff - lisp/image.el
*** empty log message ***
[gnu-emacs] / lisp / image.el
index ac1ef557edc28b25d7fd3747ef56faf83d191573..25d05c9902fcaf95ecff282db0730cf6a92e15b5 100644 (file)
@@ -46,7 +46,7 @@ When the first bytes of an image file match REGEXP, it is assumed to
 be of image type IMAGE-TYPE if IMAGE-TYPE is a symbol.  If not a symbol,
 IMAGE-TYPE must be a pair (PREDICATE . TYPE).  PREDICATE is called
 with one argument, a string containing the image data.  If PREDICATE returns
-a non-nil value, TYPE is the image's type ")
+a non-nil value, TYPE is the image's type.")
 
 
 (defun image-jpeg-p (data)
@@ -66,7 +66,7 @@ We accept the tag Exif because that is the same format."
                (code (aref data i)))
            (when (and (>= code #xe0) (<= code #xef))
              ;; APP0 LEN1 LEN2 "JFIF\0"
-             (throw 'jfif 
+             (throw 'jfif
                     (string-match "JFIF\\|Exif" (substring data i (+ i nbytes)))))
            (setq i (+ i 1 nbytes))))))))