summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-11-07 14:05:25 +0000
committerNicholas Clark <nick@ccl4.org>2005-11-07 14:05:25 +0000
commit12e9c124f1a94b176ea78903408ad28f79c267c6 (patch)
tree79ba16ce300fc0068fb1d3ea8b8a2e4cc63e6ad1 /opcode.h
parent6f9b16a7d2fe9614c783e2d5785df2cd8d7921a0 (diff)
downloadperl-12e9c124f1a94b176ea78903408ad28f79c267c6.tar.gz
The rarely used lcfirst and ucfirst share almost all their code.
Merge the two as pp_ucfirst. p4raw-id: //depot/perl@26035
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 1d10059199..00860015e3 100644
--- a/opcode.h
+++ b/opcode.h
@@ -887,7 +887,7 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */
MEMBER_TO_FPTR(Perl_pp_chr),
MEMBER_TO_FPTR(Perl_pp_crypt),
MEMBER_TO_FPTR(Perl_pp_ucfirst),
- MEMBER_TO_FPTR(Perl_pp_lcfirst),
+ MEMBER_TO_FPTR(Perl_pp_ucfirst), /* Perl_pp_lcfirst */
MEMBER_TO_FPTR(Perl_pp_uc),
MEMBER_TO_FPTR(Perl_pp_lc),
MEMBER_TO_FPTR(Perl_pp_quotemeta),