diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-06-13 16:24:23 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-07-01 14:05:40 +0200 |
commit | 0177730e7e0c099d1250571eb39367a76e2d91eb (patch) | |
tree | 18f9b6488a03824a8a0217507cec39d9972acaba /pp.c | |
parent | 637174112f90e2e782037f7c706f86617e7df263 (diff) | |
download | perl-0177730e7e0c099d1250571eb39367a76e2d91eb.tar.gz |
Split out study magic from pos magic.
study uses magic to call SvSCREAM_off() if the scalar is modified. Allocate it
its own magic type ('G' for now - pos magic is 'g'). Share the same "set"
routine and vtable as regexp/bm/fm (setregxp and vtbl_regexp).
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -769,8 +769,7 @@ PP(pp_study) } SvSCREAM_on(sv); - /* piggyback on m//g magic */ - sv_magic(sv, NULL, PERL_MAGIC_regex_global, NULL, 0); + sv_magic(sv, NULL, PERL_MAGIC_study, NULL, 0); RETPUSHYES; } |