Cleaned up uip/mhmail. Added chmod +x of spost in configure.ac.
[mmh] / h / fmt_scan.h
index dbe955f..d8fab61 100644 (file)
@@ -39,6 +39,7 @@ struct comp {
 #define        CF_TRUE       (1<<0)    /* usually means component is present */
 #define        CF_PARSED     (1<<1)    /* address/date has been parsed */
 #define        CF_DATEFAB    (1<<2)    /* datefield fabricated */
+#define CF_TRIMMED    (1<<3)   /* Component has been trimmed */
 
 extern int fmt_norm;
 
@@ -61,7 +62,8 @@ extern struct comp *wantcomp[128];
 #define FINDCOMP(comp,name) \
                for (comp = wantcomp[CHASH(name)]; \
                     comp && strcmp(comp->c_name,name); \
-                    comp = comp->c_next) ;
+                    comp = comp->c_next) \
+               ;
 
 /*
  * This structure defines one formatting instruction.