summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-01-03 00:07:13 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2004-01-03 00:07:13 +0000
commitbab9c0ac4be68b8d3e7a915e21d06ed39d0fa563 (patch)
tree433c7a34050655e49940106dcbae7bf42e930f98 /opcode.h
parent35bc0dc84153b4a6ad4b24f4d9e7d25cc7a0fb97 (diff)
downloadperl-bab9c0ac4be68b8d3e7a915e21d06ed39d0fa563.tar.gz
Tidy up change #18751, so that the second parameter to unpack()
defaults to $_ at compile-time, instead of run-time (like all other primitives that default to $_). p4raw-link: @18751 on //depot/perl: 13dcffc60adeca175c32a1ea11ec8756d4853ad2 p4raw-id: //depot/perl@22047
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcode.h b/opcode.h
index 4de3dee137..51255989ec 100644
--- a/opcode.h
+++ b/opcode.h
@@ -1254,7 +1254,7 @@ EXT OP * (CPERLscope(*PL_check)[]) (pTHX_ OP *op) = {
MEMBER_TO_FPTR(Perl_ck_rvconst), /* rv2hv */
MEMBER_TO_FPTR(Perl_ck_null), /* helem */
MEMBER_TO_FPTR(Perl_ck_null), /* hslice */
- MEMBER_TO_FPTR(Perl_ck_fun), /* unpack */
+ MEMBER_TO_FPTR(Perl_ck_unpack), /* unpack */
MEMBER_TO_FPTR(Perl_ck_fun), /* pack */
MEMBER_TO_FPTR(Perl_ck_split), /* split */
MEMBER_TO_FPTR(Perl_ck_join), /* join */