shithub: jbig2

Download patch

ref: e2ff5e373bd8ecda6db43c6b6414c8a3f3248297
parent: d23b5e5b4d8fabdf51d202094ac4259d59dcc974
author: giles <giles@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Sat Aug 27 20:10:20 EDT 2005

Comment clean-up.


git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@433 ded80894-8fb9-0310-811b-c03f3676ab4d

--- a/jbig2_huffman.c
+++ b/jbig2_huffman.c
@@ -272,9 +272,9 @@
   return result;
 }
 
-/* TODO: 10 bits here is wasteful of memory here. We have support
-   for sub-trees in jbig2_huffman_get() above, but don't use it here
-   we should, and then revert to 8 bits */
+/* TODO: 10 bits here is wasteful of memory. We have support for 
+   sub-trees in jbig2_huffman_get() above, but don't use it here.
+   We should, and then revert to 8 bits */
 #define LOG_TABLE_SIZE_MAX 10
 
 /** Build an in-memory representation of a Huffman table from the
--- a/jbig2_text.c
+++ b/jbig2_text.c
@@ -82,7 +82,7 @@
  * @data: pointer to text region data to be decoded
  * @size: length of text region data
  *
- * Implements the text region decoding proceedure
+ * Implements the text region decoding procedure
  * described in section 6.4 of the JBIG2 spec.
  *
  * returns: 0 on success
@@ -678,7 +678,7 @@
 	
         if (huffman_flags & 0x8000) {
 	  jbig2_error(ctx, JBIG2_SEVERITY_WARNING, segment->number,
-	    "text region huffman flags bit 15 is set, contrary to spec");
+ 	    "text region huffman flags bit 15 is set, contrary to spec");
 	}
         
         /* 7.4.3.1.7 */