]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix handling of comments in NetPBM image files.
authorClaudio Bley <claudio.bley@googlemail.com>
Fri, 1 Nov 2013 09:10:13 +0000 (11:10 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 1 Nov 2013 09:10:13 +0000 (11:10 +0200)
 src/image.c (pbm_next_char): New function.
 (pbm_scan_number): Use it.

 lisp/image.el (image-type-header-regexps): Fix the 'pbm' part to
 allow comments in pbm files.

lisp/ChangeLog
lisp/image.el
src/ChangeLog
src/image.c

index a73c38bd52276a8711f713735399d54126af7b19..fd8e77c9c5389f9982ef89e7fe55f3bbc43c8598 100644 (file)
@@ -1,5 +1,8 @@
 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
 
+       * image.el (image-type-header-regexps): Fix the 'pbm' part to
+       allow comments in pbm files.
+
        * term/w32-win.el (dynamic-library-alist): Support newer versions
        of libjpeg starting with v7: look only for the DLL from the
        version against which Emacs was built.
index 6ce5b82ec48a8d36f2d2149a01ea5121df6a7dad..69d890719d228ad68161bf20320352d638ab604f 100644 (file)
 
 (defconst image-type-header-regexps
   `(("\\`/[\t\n\r ]*\\*.*XPM.\\*/" . xpm)
-    ("\\`P[1-6][[:space:]]+\\(?:#.*[[:space:]]+\\)*[0-9]+[[:space:]]+[0-9]+" . pbm)
+    ("\\`P[1-6]\\\(?:\
+\\(?:\\(?:#[^\r\n]*[\r\n]\\)?[[:space:]]\\)+\
+\\(?:\\(?:#[^\r\n]*[\r\n]\\)?[0-9]\\)+\
+\\)\\{2\\}" . pbm)
     ("\\`GIF8[79]a" . gif)
     ("\\`\x89PNG\r\n\x1a\n" . png)
     ("\\`[\t\n\r ]*#define \\([a-z0-9_]+\\)_width [0-9]+\n\
index 0d58733f4bf1455f807f973039ab22760ce6cd51..bfa28105571a54560318fd79ca5caea00f192284 100644 (file)
@@ -1,6 +1,8 @@
 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
 
-       * image.c (Qlibjpeg_version): New variable.
+       * image.c (pbm_next_char): New function.
+       (pbm_scan_number): Use it.
+       (Qlibjpeg_version): New variable.
        (syms_of_image): DEFSYM and initialize it.
 
 2013-10-31  Jan Djärv  <jan.h.d@swipnet.se>
index fca1bb077f6d9bf96436867c67322addfa073e5c..958295c5d09760c8c4067076034a83799ddf69fe 100644 (file)
@@ -5106,6 +5106,27 @@ pbm_image_p (Lisp_Object object)
 }
 
 
+/* Get next char skipping comments in Netpbm header.  Returns -1 at
+   end of input.  */
+
+static int
+pbm_next_char (unsigned char **s, unsigned char *end)
+{
+  int c = -1;
+
+  while (*s < end && (c = *(*s)++, c == '#'))
+    {
+      /* Skip to the next line break.  */
+      while (*s < end && (c = *(*s)++, c != '\n' && c != '\r'))
+        ;
+
+      c = -1;
+    }
+
+  return c;
+}
+
+
 /* Scan a decimal number from *S and return it.  Advance *S while
    reading the number.  END is the end of the string.  Value is -1 at
    end of input.  */
@@ -5115,28 +5136,16 @@ pbm_scan_number (unsigned char **s, unsigned char *end)
 {
   int c = 0, val = -1;
 
-  while (*s < end)
-    {
-      /* Skip white-space.  */
-      while (*s < end && (c = *(*s)++, c_isspace (c)))
-       ;
+  /* Skip white-space.  */
+  while ((c = pbm_next_char (s, end)) != -1 && c_isspace (c))
+    ;
 
-      if (c == '#')
-       {
-         /* Skip comment to end of line.  */
-         while (*s < end && (c = *(*s)++, c != '\n'))
-           ;
-       }
-      else if (c_isdigit (c))
-       {
-         /* Read decimal number.  */
-         val = c - '0';
-         while (*s < end && (c = *(*s)++, c_isdigit (c)))
-           val = 10 * val + c - '0';
-         break;
-       }
-      else
-       break;
+  if (c_isdigit (c))
+    {
+      /* Read decimal number.  */
+      val = c - '0';
+      while ((c = pbm_next_char (s, end)) != -1 && c_isdigit (c))
+        val = 10 * val + c - '0';
     }
 
   return val;