diff options
Diffstat (limited to 'usr.bin/m4/mdef.h')
-rw-r--r-- | usr.bin/m4/mdef.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/m4/mdef.h b/usr.bin/m4/mdef.h index f4498c057ba..ed5baaa61c2 100644 --- a/usr.bin/m4/mdef.h +++ b/usr.bin/m4/mdef.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mdef.h,v 1.5 1999/09/06 13:10:48 espie Exp $ */ +/* $OpenBSD: mdef.h,v 1.6 1999/09/06 13:29:32 espie Exp $ */ /* $NetBSD: mdef.h,v 1.7 1996/01/13 23:25:27 pk Exp $ */ /* @@ -97,15 +97,15 @@ */ #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 /* size of pushback buffer */ -#define STACKMAX 1024 /* size of call stack */ -#define STRSPMAX 4096 /* size of string space */ -#define MAXTOK MAXSTR /* maximum chars in a tokn */ -#define HASHSIZE 199 /* maximum size of hashtab */ -#define MAXCCHARS 5 /* max size of comment/quote delim */ +#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 STACKMAX 1024 /* size of call stack */ +#define STRSPMAX 4096 /* starting size of string space */ +#define MAXTOK MAXSTR /* maximum chars in a tokn */ +#define HASHSIZE 199 /* maximum size of hashtab */ +#define MAXCCHARS 5 /* max size of comment/quote delim */ #define ALL 1 #define TOP 0 @@ -177,6 +177,6 @@ typedef short pbent; /* pushback entry; needs to hold chars + EOF */ */ #define PARLEV (mstack[fp].sfra) #define CALTYP (mstack[fp-1].sfra) -#define PREVEP (mstack[fp+3].sstr) +#define PREVEP compute_prevep() #define PREVSP (fp-3) #define PREVFP (mstack[fp-2].sfra) |