diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-09-24 01:45:47 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-10-10 21:56:31 -0700 |
commit | e5e1ee61c50f938a3a8b7487d29d5128d4f9a909 (patch) | |
tree | 7bb4f1d284080894c6c471192b67cc8930beddb9 /mg_vtable.h | |
parent | 9cce4f9a8471c0b7a6994f36be8819352a4d9483 (diff) | |
download | perl-e5e1ee61c50f938a3a8b7487d29d5128d4f9a909.tar.gz |
Capitalise magic descriptions consistently
Diffstat (limited to 'mg_vtable.h')
-rw-r--r-- | mg_vtable.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mg_vtable.h b/mg_vtable.h index 38ca08e2b8..2ee636106e 100644 --- a/mg_vtable.h +++ b/mg_vtable.h @@ -14,13 +14,13 @@ #define PERL_MAGIC_sv '\0' /* Special scalar variable */ #define PERL_MAGIC_arylen '#' /* Array length ($#ary) */ -#define PERL_MAGIC_rhash '%' /* extra data for restricted hashes */ +#define PERL_MAGIC_rhash '%' /* Extra data for restricted hashes */ #define PERL_MAGIC_proto '&' /* my sub prototype CV */ #define PERL_MAGIC_debugvar '*' /* $DB::single, signal, trace vars */ #define PERL_MAGIC_pos '.' /* pos() lvalue */ -#define PERL_MAGIC_symtab ':' /* extra data for symbol tables */ -#define PERL_MAGIC_backref '<' /* for weak ref data */ -#define PERL_MAGIC_arylen_p '@' /* to move arylen out of XPVAV */ +#define PERL_MAGIC_symtab ':' /* Extra data for symbol tables */ +#define PERL_MAGIC_backref '<' /* For weak ref data */ +#define PERL_MAGIC_arylen_p '@' /* To move arylen out of XPVAV */ #define PERL_MAGIC_bm 'B' /* Boyer-Moore (fast string search) */ #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */ #define PERL_MAGIC_regdata 'D' /* Regex match position data @@ -43,7 +43,7 @@ #define PERL_MAGIC_tied 'P' /* Tied array or hash */ #define PERL_MAGIC_tiedelem 'p' /* Tied array or hash element */ #define PERL_MAGIC_tiedscalar 'q' /* Tied scalar or handle */ -#define PERL_MAGIC_qr 'r' /* precompiled qr// regex */ +#define PERL_MAGIC_qr 'r' /* Precompiled qr// regex */ #define PERL_MAGIC_sig 'S' /* %SIG hash */ #define PERL_MAGIC_sigelem 's' /* %SIG hash element */ #define PERL_MAGIC_taint 't' /* Taintedness */ @@ -56,7 +56,7 @@ #define PERL_MAGIC_defelem 'y' /* Shadow "foreach" iterator variable / smart parameter vivification */ #define PERL_MAGIC_lvref '\\' /* Lvalue reference in list assignment */ -#define PERL_MAGIC_checkcall ']' /* inlining/mutation of call to this CV */ +#define PERL_MAGIC_checkcall ']' /* Inlining/mutation of call to this CV */ #define PERL_MAGIC_ext '~' /* Available for use by extensions */ enum { /* pass one of these to get_vtbl */ |