summaryrefslogtreecommitdiff
path: root/perlio.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-12-21 16:48:48 -0700
committerKarl Williamson <public@khwilliamson.com>2013-12-21 17:13:36 -0700
commitbb02e0c10a57ab28b9ec6ca218c7aa6aac53a90c (patch)
tree2a3a7a4c480a8f19e10b47badb84fc5ba853a741 /perlio.h
parent662399e759ec005e2e221482081ff4f765d22b36 (diff)
downloadperl-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.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/perlio.h b/perlio.h
index c55cbf6159..34968c3a29 100644
--- a/perlio.h
+++ b/perlio.h
@@ -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