diff options
author | Karl Williamson <khw@cpan.org> | 2017-01-12 21:05:35 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-01-13 11:44:35 -0700 |
commit | af4226f2469589e84d382a08a6a5242303758f0b (patch) | |
tree | 6d773fad74ba294646ba841c93c73ce106973748 /pp_sys.c | |
parent | afa4768ac90fcd6a53a3661885a238d344a02f92 (diff) | |
download | perl-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.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; } |