about summary refs log tree commit diff
path: root/converter/other/jbig/libjbig/jbig.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-06-26 03:31:11 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2014-06-26 03:31:11 +0000
commit53a6f5e4b641007ecf6029a0f0e46c8d5407bd61 (patch)
treed3d93c4c7c4083d7ba375c14a784c29d2c8ded47 /converter/other/jbig/libjbig/jbig.c
parenta6c2d00ca318928ab1b7a1962396429a0dec180d (diff)
downloadnetpbm-mirror-53a6f5e4b641007ecf6029a0f0e46c8d5407bd61.tar.gz
netpbm-mirror-53a6f5e4b641007ecf6029a0f0e46c8d5407bd61.tar.xz
netpbm-mirror-53a6f5e4b641007ecf6029a0f0e46c8d5407bd61.zip
Remove ambiguous, incorrect use of 'support'
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2212 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/jbig/libjbig/jbig.c')
-rw-r--r--converter/other/jbig/libjbig/jbig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/converter/other/jbig/libjbig/jbig.c b/converter/other/jbig/libjbig/jbig.c
index ed0a9d08..1ff867e8 100644
--- a/converter/other/jbig/libjbig/jbig.c
+++ b/converter/other/jbig/libjbig/jbig.c
@@ -39,8 +39,8 @@
 
 #include "jbig.h"
 
-#define MX_MAX  127    /* maximal supported mx offset for
-			* adaptive template in the encoder */
+#define MX_MAX  127
+   /* maximal mx offset for adaptive template in the encoder */
 
 #define TPB2CX  0x195  /* contexts for TP special pixels */
 #define TPB3CX  0x0e5
@@ -2609,7 +2609,7 @@ int jbg_dec_in(struct jbg_dec_state *s, unsigned char *data, size_t len,
     s->yd = y;
     s->l0 = (((long) s->buffer[12] << 24) | ((long) s->buffer[13] << 16) |
 	     ((long) s->buffer[14] <<  8) | (long) s->buffer[15]);
-    /* ITU-T T.85 trick not directly supported by decoder; for full
+    /* ITU-T T.85 trick not directly implemented by decoder; for full
      * T.85 compatibility with respect to all NEWLEN marker scenarios,
      * preprocess BIE with jbg_newlen() before passing it to the decoder,
      * or consider using the decoder found in jbig85.c instead. */