summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2008-05-27 22:58:13 +0000
committerDave Mitchell <davem@fdisolutions.com>2008-05-27 22:58:13 +0000
commit1846de3e2fab78cf13604ab27bf509695367229b (patch)
treecec95d1062ce8d92ab6ddd71caa6bc0f95aeb26d /op.c
parentfd672156cf16aae8ef6a14c255a465b65d5a512e (diff)
downloadperl-1846de3e2fab78cf13604ab27bf509695367229b.tar.gz
Integrate:
[ 33297] Subject: [PATCH] Read-only variable tests From: "Jerry D. Hedden" <jdhedden@cpan.org> Date: Fri, 8 Feb 2008 14:06:41 -0500 Message-ID: <1ff86f510802081106l737e4dcdibb73c8eacb4c39d8@mail.gmail.com> with one less TODO test [ 33311] Subject: Re: [perl #50706] %^H affecting outside file scopes From: Rick Delaney <rick@bort.ca> Date: Tue, 12 Feb 2008 14:05:22 -0500 Message-ID: <20080212190522.GB16896@bort.ca> [ 33312] Add missing file to MANIFEST, to go with change #33311 [ 33313] Subject: [PATCH t/op/pat.t] Re: [perl #50496] Bug Report: 'keys %+' does not return the correct keys. From: Abigail <abigail@abigail.be> Date: Thu, 7 Feb 2008 17:53:30 +0100 Message-ID: <20080207165330.GA25617@abigail.be> with tweaks (one more test marked TODO) [ 33317] Typo catch, by Abigail [ 33322] Correctly reference count the hints hash [ 33323] Fix macro name in comment [ 33324] Fix perlbug 50114 and document what the code does a bit better [ 33325] Fix bug 50496 -- regcomp.c=~s/lastcloseparen/lastparen/g -- lastcloseparen is literally the index of the last paren closed -- lastparen is index of the highest index paren that has been closed. In nested parens, they will be completely different. 'ab'=~/(a(b))/ will have: lastparen = 2, lastcloseparen = 1 'ab'=~/(a)(b)/ will have: lastparen = lastcloseparen = 2 [ 33327] Subject: [ patch ] silence 2 possibly uninitialized vars From: Jim Cromie <jim.cromie@gmail.com> Date: Sat, 16 Feb 2008 18:02:19 -0700 Message-ID: <47B7879B.5040302@gmail.com> p4raw-link: @33327 on //depot/perl: 4f61fd4b74b06db0447fa2ade9a7c3c85c08bbb3 p4raw-link: @33325 on //depot/perl: 250257bbff1fc2894d6e73059be5be21b4ea00a4 p4raw-link: @33324 on //depot/perl: 639081d6f95c9b3121be1c0c372070f2e0ca4eaf p4raw-link: @33323 on //depot/perl: 34795b444ea0d5e132ba709fc4810b1d0ca42796 p4raw-link: @33322 on //depot/perl: 50a25f5b3f6c81747a40fdda68c9ad6bf32980bc p4raw-link: @33317 on //depot/perl: ac29ea618786f0a38e2ac499b0736f40f4b2eb78 p4raw-link: @33313 on //depot/perl: 66072c921436c766269e73c39b5681133d44af1c p4raw-link: @33312 on //depot/perl: e5e2ca09e608f6cc317e54006e2114fa77dcb134 p4raw-link: @33311 on //depot/perl: 27eaf14c55a541e1e4f2529a8084e15a8cc43d41 p4raw-link: @33297 on //depot/perl: 6ba536972b10525e985c307bc39be08fad8ed272 p4raw-id: //depot/maint-5.10/perl@33941 p4raw-branched: from //depot/perl@33940 'branch in' t/lib/Sans_mypragma.pm p4raw-integrated: from //depot/perl@33940 'copy in' lib/Internals.t (@15208..) t/lib/mypragma.t (@29475..) p4raw-integrated: from //depot/perl@33327 'merge in' toke.c (@33291..) p4raw-integrated: from //depot/perl@33324 'edit in' regcomp.c (@33291..) 'merge in' t/op/re_tests (@32941..) p4raw-integrated: from //depot/perl@33323 'merge in' op.c (@33315..) p4raw-integrated: from //depot/perl@33322 'edit in' pp_ctl.c (@33311..) p4raw-integrated: from //depot/perl@33317 'edit in' t/op/pat.t (@33316..) p4raw-integrated: from //depot/perl@33312 'merge in' MANIFEST (@33291..)
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 653748dc7c..e3d9b48086 100644
--- a/op.c
+++ b/op.c
@@ -90,7 +90,7 @@ recursive, but it's recursive on basic blocks, not on tree nodes.
magic type 'H'. This magic (itself) does nothing, but its presence causes
the values to gain magic type 'h', which has entries for set and clear.
C<Perl_magic_sethint> updates C<PL_compiling.cop_hints_hash> with a store
- record, with deletes written by C<Perl_magic_clearhint>. C<SAVE_HINTS>
+ record, with deletes written by C<Perl_magic_clearhint>. C<SAVEHINTS>
saves the current C<PL_compiling.cop_hints_hash> on the save stack, so that
it will be correctly restored when any inner compiling scope is exited.
*/