diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-06-15 14:01:40 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-06-15 14:01:40 +0000 |
commit | d98c2987414c7137f300185bd39814fb3d454762 (patch) | |
tree | 407cc1750e0eae95077be2c1c7dd8a0bb4e8e420 /usr.bin | |
parent | bd6e19e1e0f1bbb0d7f9094e81bf5f08eaf38b9a (diff) |
Kill MAXSTR, it's no longer used at all.
Define MAXTOK directly.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/m4/mdef.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/m4/mdef.h b/usr.bin/m4/mdef.h index e5f4f4891b5..3cb0d12b22b 100644 --- a/usr.bin/m4/mdef.h +++ b/usr.bin/m4/mdef.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mdef.h,v 1.17 2000/07/24 23:08:25 espie Exp $ */ +/* $OpenBSD: mdef.h,v 1.18 2001/06/15 14:01:39 espie Exp $ */ /* $NetBSD: mdef.h,v 1.7 1996/01/13 23:25:27 pk Exp $ */ /* @@ -111,11 +111,10 @@ #define EOS '\0' #define MAXINP 10 /* maximum include files */ #define MAXOUT 10 /* maximum # of diversions */ -#define MAXSTR 512 /* maximum size of string */ #define BUFSIZE 4096 /* starting size of pushback buffer */ #define INITSTACKMAX 4096 /* starting size of call stack */ #define STRSPMAX 4096 /* starting size of string space */ -#define MAXTOK MAXSTR /* maximum chars in a tokn */ +#define MAXTOK 512 /* maximum chars in a tokn */ #define HASHSIZE 199 /* maximum size of hashtab */ #define MAXCCHARS 5 /* max size of comment/quote delim */ |