diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-12-27 11:41:10 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-12-27 11:41:10 +0000 |
commit | fa54efaecf052db2a7799ec4c2433eeb1576402e (patch) | |
tree | 3867f9cf190015546695148d265fe7b9c2ca50e0 /mathoms.c | |
parent | fc51b17cb579e8cdaf6e99fdeb80f92379491759 (diff) | |
download | perl-fa54efaecf052db2a7799ec4c2433eeb1576402e.tar.gz |
Merge the opcode bodies for chop/chomp and schop/schomp.
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1123,6 +1123,16 @@ PP(pp_rv2hv) return Perl_pp_rv2av(aTHX); } +PP(pp_schomp) +{ + return Perl_pp_chomp(aTHX); +} + +PP(pp_chomp) +{ + return Perl_pp_chop(aTHX); +} + U8 * Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) { |