From: Arnar Mar Hrafnkelsson <addi@cpan.org>
Date: Fri, 30 Mar 2001 04:56:18 +0000 (+0000)
Subject: Added STATUS, other updates are just from touching files.
X-Git-Tag: Imager-0.48^2~771
X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/3bb1c1f3157878865e805fb2d1a41885bf668f94

Added STATUS, other updates are just from touching files.
---

diff --git a/STATUS b/STATUS
new file mode 100644
index 00000000..f9ae179b
--- /dev/null
+++ b/STATUS
@@ -0,0 +1,30 @@
+filters.c             # pod (excpet experimental)
+font.c                # pod
+gif.c                 # pod
+image.c               # pod
+iolayer.c             # pod
+pnm.c                 # pod
+tiff.c                # pod
+
+jpeg.c                # comments
+
+conv.c                # minor comments
+datatypes.c           # minor comments
+draw.c                # minor comments
+gaussian.c            # minor comments
+png.c                 # minor comments
+raw.c                 # minor comments 
+regmach.c             # minor comments
+trans2.c              # minor comments
+dynaload.c            # minor comments
+
+io.c                  # no comments
+feat.c                # no comments
+log.c                 # no comments
+stackmach.c           # no comments
+
+quant.c               # comments, lots of changing code
+
+
+
+
diff --git a/filters.c b/filters.c
index 51d26426..14ffb0b7 100644
--- a/filters.c
+++ b/filters.c
@@ -941,7 +941,7 @@ i_nearest_color(i_img *im, int num, int *xo, int *yo, i_color *oval, int dmeasur
 
     for(ch = 0; ch<im->channels; ch++) 
       tval[midx*im->channels + ch] = c1*tval[midx*im->channels + ch] + c2 * (float) val.channel[ch];
-    
+  
     
   }
 
diff --git a/gif.c b/gif.c
index e0e94a2a..7b8db932 100644
--- a/gif.c
+++ b/gif.c
@@ -18,7 +18,7 @@ gif.c - read and write gif files for Imager
   i_color fixed[N]; // fixed palette entries 
   int fixedlen; // number of fixed colours 
   int success; // non-zero on success
-  char *data; // an GIF file in memory
+  char *data; // a GIF file in memory
   int length; // how big data is 
   int reader(char *, char *, int, int);
   int writer(char *, char *, int);
diff --git a/trans2.c b/trans2.c
index 35b06c5a..ad0b9ea7 100644
--- a/trans2.c
+++ b/trans2.c
@@ -1,6 +1,8 @@
 #include "image.h"
 #include "regmach.h"
 
+/* foo test */
+
 i_img* i_transform2(int width, int height, int channels,
 		    struct rm_op *ops, int ops_count, 
 		    double *n_regs, int n_regs_count,