diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-09-25 14:46:35 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-09-25 18:11:17 -0700 |
commit | eccba0447e537a14ae12e1894864fbd54032178c (patch) | |
tree | 70be777c1d43e2ea2fb7706c00adc35e6c250557 /mg_raw.h | |
parent | b3045d9c1f82f3a16ffa240a2b4e501855d2f95e (diff) | |
download | perl-eccba0447e537a14ae12e1894864fbd54032178c.tar.gz |
Correct fm vtable in perlguts.pod
fm magic uses want_vtbl_fm, which is #defined as want_vtbl_regexp.
The definition in regen/mg_vtable.pl does not affect anything except
the documentation. It was listed as using regdata which was wrong.
Diffstat (limited to 'mg_raw.h')
-rw-r--r-- | mg_raw.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ "/* env 'E' %ENV hash */" }, { 'e', "want_vtbl_envelem", "/* envelem 'e' %ENV hash element */" }, - { 'f', "want_vtbl_regdata | PERL_MAGIC_READONLY_ACCEPTABLE | PERL_MAGIC_VALUE_MAGIC", + { 'f', "want_vtbl_regexp | PERL_MAGIC_READONLY_ACCEPTABLE | PERL_MAGIC_VALUE_MAGIC", "/* fm 'f' Formline ('compiled' format) */" }, { 'g', "want_vtbl_mglob | PERL_MAGIC_READONLY_ACCEPTABLE | PERL_MAGIC_VALUE_MAGIC", "/* regex_global 'g' m//g target */" }, |