diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-12-21 16:48:48 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-12-21 17:13:36 -0700 |
commit | bb02e0c10a57ab28b9ec6ca218c7aa6aac53a90c (patch) | |
tree | 2a3a7a4c480a8f19e10b47badb84fc5ba853a741 /perlio.h | |
parent | 662399e759ec005e2e221482081ff4f765d22b36 (diff) | |
download | perl-bb02e0c10a57ab28b9ec6ca218c7aa6aac53a90c.tar.gz |
perlio.h: Indent nested #if
I found this helpful in tracking down an issue, being able to
conveniently pair an #endif with its corresponding #if. The rest of the
file could stand this sort of treatment, but not from me now.
Diffstat (limited to 'perlio.h')
-rw-r--r-- | perlio.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -132,19 +132,19 @@ PERL_EXPORT_C void PerlIO_clone(pTHX_ PerlInterpreter *proto, * can set how it wants. */ -#ifdef PERL_CORE +# ifdef PERL_CORE /* Make a choice for perl core code - currently this is set to try and catch lingering raw stdio calls. This is a known issue with some non UNIX ports which still use "native" stdio features. */ -#ifndef PERLIO_NOT_STDIO -#define PERLIO_NOT_STDIO 1 -#endif -#else -#ifndef PERLIO_NOT_STDIO -#define PERLIO_NOT_STDIO 0 -#endif +# ifndef PERLIO_NOT_STDIO +# define PERLIO_NOT_STDIO 1 +# endif + #else +# ifndef PERLIO_NOT_STDIO +# define PERLIO_NOT_STDIO 0 +# endif #endif #ifdef PERLIO_NOT_STDIO |