summaryrefslogtreecommitdiffstats
path: root/usr.bin/m4
diff options
context:
space:
mode:
authorjmallett <jmallett@FreeBSD.org>2002-06-20 11:17:46 +0000
committerjmallett <jmallett@FreeBSD.org>2002-06-20 11:17:46 +0000
commite62709f86b6472595c119067ede18ad5833de63d (patch)
tree944488e206cbcbd88fbcf502a971c8ea39cbb7a0 /usr.bin/m4
parent9942f1e160a307a5b9250adbd00590b49b8353aa (diff)
downloadFreeBSD-src-e62709f86b6472595c119067ede18ad5833de63d.zip
FreeBSD-src-e62709f86b6472595c119067ede18ad5833de63d.tar.gz
Whitespace fixes to line-up EOL escapes whose right-most extraints changed in
the previous revision due to the biggest line changing.
Diffstat (limited to 'usr.bin/m4')
-rw-r--r--usr.bin/m4/mdef.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/usr.bin/m4/mdef.h b/usr.bin/m4/mdef.h
index 9536ced..3198918 100644
--- a/usr.bin/m4/mdef.h
+++ b/usr.bin/m4/mdef.h
@@ -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)
/*
OpenPOWER on IntegriCloud