diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-11-05 01:36:17 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-11-05 01:36:17 +0000 |
commit | c960fc3b3086016b5cf3008030dd5aa01b2db20d (patch) | |
tree | 5f1a5837918aa2b472668295912d44b609ff04c1 /opcode.h | |
parent | e5105eda9ec104fa4cd12906af09da2e3a0c3386 (diff) | |
download | perl-c960fc3b3086016b5cf3008030dd5aa01b2db20d.tar.gz |
Merge pp_andassign, pp_orassign, and pp_dorassign into pp_and,
pp_or, and pp_defined, respectively.
p4raw-id: //depot/perl@26007
Diffstat (limited to 'opcode.h')
-rw-r--r-- | opcode.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -925,8 +925,8 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */ MEMBER_TO_FPTR(Perl_pp_range), MEMBER_TO_FPTR(Perl_pp_flip), MEMBER_TO_FPTR(Perl_pp_flop), - MEMBER_TO_FPTR(Perl_pp_and), - MEMBER_TO_FPTR(Perl_pp_or), + MEMBER_TO_FPTR(Perl_pp_and), /* Perl_pp_and */ + MEMBER_TO_FPTR(Perl_pp_or), /* Perl_pp_or */ MEMBER_TO_FPTR(Perl_pp_xor), MEMBER_TO_FPTR(Perl_pp_cond_expr), MEMBER_TO_FPTR(Perl_pp_andassign), @@ -1118,7 +1118,7 @@ EXT Perl_ppaddr_t PL_ppaddr[] /* or perlvars.h */ MEMBER_TO_FPTR(Perl_pp_setstate), MEMBER_TO_FPTR(Perl_pp_method_named), MEMBER_TO_FPTR(Perl_pp_defined), /* Perl_pp_dor */ - MEMBER_TO_FPTR(Perl_pp_dorassign), + MEMBER_TO_FPTR(Perl_pp_defined), /* Perl_pp_dorassign */ } #endif ; |