couple more whitespace fixes, by Nathan Ahlstrom

This commit is contained in:
jdolecek 2000-10-18 17:23:18 +00:00
parent ea9b5a9106
commit 313e5bd09f
3 changed files with 20 additions and 20 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.23 1999/08/16 02:49:20 enami Exp $ */
/* $NetBSD: main.c,v 1.24 2000/10/18 17:23:18 jdolecek Exp $ */
/*-
* Copyright (c) 1989, 1993
@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: main.c,v 1.23 1999/08/16 02:49:20 enami Exp $");
__RCSID("$NetBSD: main.c,v 1.24 2000/10/18 17:23:18 jdolecek Exp $");
#endif
#endif /* not lint */
@ -459,7 +459,7 @@ macro()
* combo with lookup to speed things up.
*/
ndptr
inspect(tp)
inspect(tp)
char *tp;
{
char c;
@ -483,9 +483,9 @@ inspect(tp)
}
/*
* initkwds - initialise m4 keywords as fast as possible.
* initkwds - initialise m4 keywords as fast as possible.
* This very similar to install, but without certain overheads,
* such as calling lookup. Malloc is not used for storing the
* such as calling lookup. Malloc is not used for storing the
* keyword strings, since we simply use the static pointers
* within keywrds block.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: mdef.h,v 1.8 1997/12/02 22:34:04 cgd Exp $ */
/* $NetBSD: mdef.h,v 1.9 2000/10/18 17:23:18 jdolecek Exp $ */
/*
* Copyright (c) 1989, 1993
@ -71,13 +71,13 @@
#define SYSVTYPE 31
#define EXITTYPE 32
#define DEFNTYPE 33
#define STATIC 128
/*
* m4 special characters
*/
#define ARGFLAG '$'
#define LPAREN '('
#define RPAREN ')'
@ -108,7 +108,7 @@
#define ALL 1
#define TOP 0
#define TRUE 1
#define FALSE 0
#define cycle for(;;)
@ -116,18 +116,18 @@
/*
* m4 data structures
*/
typedef struct ndblock *ndptr;
struct ndblock { /* hastable structure */
char *name; /* entry name.. */
char *defn; /* definition.. */
int type; /* type of the entry.. */
ndptr nxtptr; /* link to next entry.. */
};
#define nil ((ndptr) 0)
struct keyblk {
char *knam; /* keyword name */
int ktyp; /* keyword type */
@ -147,9 +147,9 @@ typedef short pbent; /* pushback entry; needs to hold chars + EOF */
* pushf() - push a call frame entry onto stack
* pushs() - push a string pointer onto stack
*/
#define gpbc() (bp > bufbase) ? *--bp : getc(infile[ilevel])
#define pushf(x) if (sp < STACKMAX) mstack[++sp].sfra = (x)
#define pushs(x) if (sp < STACKMAX) mstack[++sp].sstr = (x)
#define gpbc() (bp > bufbase) ? *--bp : getc(infile[ilevel])
#define pushf(x) if (sp < STACKMAX) mstack[++sp].sfra = (x)
#define pushs(x) if (sp < STACKMAX) mstack[++sp].sstr = (x)
/*
* . .

View File

@ -1,4 +1,4 @@
/* $NetBSD: stdd.h,v 1.2 1995/09/28 05:37:50 tls Exp $ */
/* $NetBSD: stdd.h,v 1.3 2000/10/18 17:23:18 jdolecek Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -47,9 +47,9 @@
#define iswhite(c) ((c) == ' ' || (c) == '\t')
/*
* STREQ is an optimised strcmp(a,b)==0
* STREQN is an optimised strncmp(a,b,n)==0; assumes n > 0
/*
* STREQ is an optimised strcmp(a,b)==0
* STREQN is an optimised strncmp(a,b,n)==0; assumes n > 0
*/
#define STREQ(a, b) ((a)[0] == (b)[0] && strcmp(a, b) == 0)
#define STREQN(a, b, n) ((a)[0] == (b)[0] && strncmp(a, b, n) == 0)