Whitespace fixes to line-up EOL escapes whose right-most extraints changed in

the previous revision due to the biggest line changing.
This commit is contained in:
Juli Mallett 2002-06-20 11:17:46 +00:00
parent d40d348ceb
commit 701e9a0054
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98491

View File

@ -169,28 +169,28 @@ struct input_file {
* pushf() - push a call frame entry onto stack
* pushs() - push a string pointer onto stack
*/
#define pushf(x) \
do { \
#define pushf(x) \
do { \
if ((uintptr_t)++sp == STACKMAX) \
enlarge_stack();\
mstack[sp].sfra = (x); \
sstack[sp] = 0; \
enlarge_stack(); \
mstack[sp].sfra = (x); \
sstack[sp] = 0; \
} while (0)
#define pushs(x) \
do { \
#define pushs(x) \
do { \
if ((uintptr_t)++sp == STACKMAX) \
enlarge_stack();\
mstack[sp].sstr = (x); \
sstack[sp] = 1; \
enlarge_stack(); \
mstack[sp].sstr = (x); \
sstack[sp] = 1; \
} while (0)
#define pushs1(x) \
do { \
#define pushs1(x) \
do { \
if ((uintptr_t)++sp == STACKMAX) \
enlarge_stack();\
mstack[sp].sstr = (x); \
sstack[sp] = 0; \
enlarge_stack(); \
mstack[sp].sstr = (x); \
sstack[sp] = 0; \
} while (0)
/*