diff options
Diffstat (limited to 'pod/perlhack.pod')
-rw-r--r-- | pod/perlhack.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlhack.pod b/pod/perlhack.pod index cce574d9e0..a0b35725e4 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -557,7 +557,7 @@ that's left to do is run it. The actual execution is done by the C<runops_standard> function in F<run.c>; more specifically, it's done by these three innocent looking lines: - while ((PL_op = CALL_FPTR(PL_op->op_ppaddr)(aTHX))) { + while ((PL_op = PL_op->op_ppaddr(aTHX))) { PERL_ASYNC_CHECK(); } |