diff options
author | David Mitchell <davem@iabyn.com> | 2010-06-04 21:30:18 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-06-04 21:30:18 +0100 |
commit | 613a9ec2cfb133a94ef11f3e50bdfef024885d96 (patch) | |
tree | 0086b3a154e0ce60fb689e03afd47dd8c9656d0a /gv.h | |
parent | 6ca8229ddb2de12c1f8f877d70989420b70a8072 (diff) | |
download | perl-613a9ec2cfb133a94ef11f3e50bdfef024885d96.tar.gz |
fix indendation of DM_* flag definitions
Diffstat (limited to 'gv.h')
-rw-r--r-- | gv.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -168,14 +168,14 @@ Return the SV from the GV. # define Nullgv Null(GV*) #endif -#define DM_RUID 0x001 -#define DM_EUID 0x002 +#define DM_RUID 0x001 +#define DM_EUID 0x002 #define DM_UID (DM_RUID|DM_EUID) #define DM_ARRAY_ISA 0x004 -#define DM_RGID 0x010 -#define DM_EGID 0x020 +#define DM_RGID 0x010 +#define DM_EGID 0x020 #define DM_GID (DM_RGID|DM_EGID) -#define DM_DELAY 0x100 +#define DM_DELAY 0x100 /* * symbol creation flags, for use in gv_fetchpv() and get_*v() |