diff options
author | Tim Jenness <tjenness@cpan.org> | 2001-02-27 03:24:58 -1000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-28 14:33:39 +0000 |
commit | 39644a267dae6dfa935b1c1d39151eb399850949 (patch) | |
tree | 98092472b53e8d4b0a3c9b19e7a554ba1aa7d1f1 /pod/perlhack.pod | |
parent | 7bf0340c2f81061e7011d0e09fe7cf3e5dd6300f (diff) | |
download | perl-39644a267dae6dfa935b1c1d39151eb399850949.tar.gz |
Re: sync sync sync: have I missed any patches?
In-Reply-To: <20010227140737.Y10633@chaos.wustl.edu>
Message-ID: <Pine.LNX.4.30.0102271322070.8623-100000@lapaki.jach.hawaii.edu>
Replace djSP with dSP.
p4raw-id: //depot/perl@8963
Diffstat (limited to 'pod/perlhack.pod')
-rw-r--r-- | pod/perlhack.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 155773d8e5..62c80e701f 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -1146,7 +1146,7 @@ the code which implements the addition operator: 1 PP(pp_add) 2 { - 3 djSP; dATARGET; tryAMAGICbin(add,opASSIGN); + 3 dSP; dATARGET; tryAMAGICbin(add,opASSIGN); 4 { 5 dPOPTOPnnrl_ul; 6 SETn( left + right ); @@ -1308,7 +1308,7 @@ Lots of junk will go past as gdb reads in the relevant source files and libraries, and then: Breakpoint 1, Perl_pp_add () at pp_hot.c:309 - 309 djSP; dATARGET; tryAMAGICbin(add,opASSIGN); + 309 dSP; dATARGET; tryAMAGICbin(add,opASSIGN); (gdb) step 311 dPOPTOPnnrl_ul; (gdb) |