]> git.marmaro.de Git - mmh/blobdiff - sbr/dtimep.lex
* docs/MAIL.FILTERING: added note on removing procmail -f or
[mmh] / sbr / dtimep.lex
index a228694940511863cabb3d96e1a8dcadd9d05d0d..c35c9beffd36cfcbca1d94697c1e4d420330d905 100644 (file)
@@ -1,3 +1,12 @@
+/* dtimep.lex exceeds the default table capacities for some old versions
+ * of lex (and the minimum defaults as specified by POSIX).  The following
+ * choices meet or exceed the lex defaults for older SunOS4.x, Solaris,
+ * HPUX, and AIX.
+ */
+%e4000
+%p7000
+%n2500
+%a5000
 %{
 #include <h/nmh.h>
 #include <h/tws.h>
@@ -227,7 +236,7 @@ nl      [ \t\n()]
   
   YY_BUFFER_STATE lexhandle;
 
-  register char *cp;
+  register unsigned char *cp;
   static struct tws tw; 
 
   memset(&tw,0,sizeof(struct tws));