diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-11-18 20:32:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-11-18 20:32:23 +0000 |
commit | fd06b02ce1aae5ae555b7101c2fe3e521cb2fd9f (patch) | |
tree | 0568c9d522aa72801e35877a4426431580ff4fd3 /intrpvar.h | |
parent | 6f479e052512b94a76fb842505b7bc960ade1ac4 (diff) | |
download | perl-fd06b02ce1aae5ae555b7101c2fe3e521cb2fd9f.tar.gz |
Rename PL_breakable_sub_generation to PL_breakable_sub_gen, to please
the ANSI gods of VMS.
p4raw-id: //depot/perl@34886
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index ac50f84882..5e684b952c 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -677,7 +677,8 @@ PERLVARI(Idestroyhook, destroyable_proc_t, MEMBER_TO_FPTR(Perl_sv_destroyable)) PERLVARI(Isv_serial, U32, 0) /* SV serial number, used in sv.c */ #endif -PERLVARI(Ibreakable_sub_generation, U32, 0) +/* Perl_Ibreakable_sub_generation_ptr was too long for VMS, hence "gen" */ +PERLVARI(Ibreakable_sub_gen, U32, 0) /* If you are adding a U8 or U16, check to see if there are 'Space' comments * above on where there are gaps which currently will be structure padding. */ |