From: Steve Peters Date: Sat, 5 Nov 2005 01:39:51 +0000 (+0000) Subject: Typos in opcode.pl this time. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=62726f235154035f7133dd6a159de4ffbbfb0cdb;p=p5sagit%2Fp5-mst-13.2.git Typos in opcode.pl this time. p4raw-id: //depot/perl@26008 --- diff --git a/opcode.h b/opcode.h index 3b33935..1d10059 100644 --- a/opcode.h +++ b/opcode.h @@ -925,12 +925,12 @@ 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), /* Perl_pp_and */ - MEMBER_TO_FPTR(Perl_pp_or), /* Perl_pp_or */ + MEMBER_TO_FPTR(Perl_pp_and), + MEMBER_TO_FPTR(Perl_pp_or), MEMBER_TO_FPTR(Perl_pp_xor), MEMBER_TO_FPTR(Perl_pp_cond_expr), - MEMBER_TO_FPTR(Perl_pp_andassign), - MEMBER_TO_FPTR(Perl_pp_orassign), + MEMBER_TO_FPTR(Perl_pp_and), /* Perl_pp_andassign */ + MEMBER_TO_FPTR(Perl_pp_or), /* Perl_pp_orassign */ MEMBER_TO_FPTR(Perl_pp_method), MEMBER_TO_FPTR(Perl_pp_entersub), MEMBER_TO_FPTR(Perl_pp_leavesub), diff --git a/opcode.pl b/opcode.pl index 9f12344..4582b9b 100755 --- a/opcode.pl +++ b/opcode.pl @@ -74,8 +74,8 @@ my @raw_alias = ( Perl_pp_shmwrite => [qw(shmread msgsnd msgrcv semop)], Perl_pp_send => ['syswrite'], Perl_pp_defined => [qw(dor dorassign)], - Perl_pp_and => ['and'], - Perl_pp_or => ['or'], + Perl_pp_and => ['andassign'], + Perl_pp_or => ['orassign'], ); while (my ($func, $names) = splice @raw_alias, 0, 2) {