diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-11-27 18:27:09 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-27 18:29:57 -0800 |
commit | fea3622c948af84617d7c45cbbeb8ce76b59cad3 (patch) | |
tree | f624b3c11cb95555ee12bea75c06b9b90b0a97ea /sv.h | |
parent | b42ff875ff2df8bfb39d4880a727b59f0e64d619 (diff) | |
download | perl-fea3622c948af84617d7c45cbbeb8ce76b59cad3.tar.gz |
Remove duplicate comment from sv.h
The ‘or lexical’ in this ‘glob or lexical is just a copy’ comment was
added in perl 5.001 (748a9306), which added closures.
This comment was later duplicated in commit 120ff8e9d (‘Document a
sixth use for SVf_FAKE’), but in a clearer fashion.
This commit removes the ‘or lexical’ part, as it is now confusing.
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -322,7 +322,7 @@ perform the upgrade if necessary. See C<svtype>. #define SVs_SMG 0x00400000 /* has magical set method */ #define SVs_RMG 0x00800000 /* has random magical methods */ -#define SVf_FAKE 0x01000000 /* 0: glob or lexical is just a copy +#define SVf_FAKE 0x01000000 /* 0: glob is just a copy 1: SV head arena wasn't malloc()ed 2: in conjunction with SVf_READONLY marks a shared hash key scalar |