summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2017-01-12 21:05:35 -0700
committerKarl Williamson <khw@cpan.org>2017-01-13 11:44:35 -0700
commitaf4226f2469589e84d382a08a6a5242303758f0b (patch)
tree6d773fad74ba294646ba841c93c73ce106973748 /pp_sys.c
parentafa4768ac90fcd6a53a3661885a238d344a02f92 (diff)
downloadperl-af4226f2469589e84d382a08a6a5242303758f0b.tar.gz
pp_sys.c: White space only
Vertically align some components of an 'if' for readability.
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pp_sys.c b/pp_sys.c
index c0ef29812e..11193bcbc6 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3598,14 +3598,14 @@ PP(pp_fttext)
}
else
#endif
- if (isPRINT_A(*s)
- /* VT occurs so rarely in text, that we consider it odd */
- || (isSPACE_A(*s) && *s != VT_NATIVE)
+ if ( isPRINT_A(*s)
+ /* VT occurs so rarely in text, that we consider it odd */
+ || (isSPACE_A(*s) && *s != VT_NATIVE)
/* But there is a fair amount of backspaces and escapes in
* some text */
- || *s == '\b'
- || *s == ESC_NATIVE)
+ || *s == '\b'
+ || *s == ESC_NATIVE)
{
continue;
}