diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-06-27 18:34:36 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-06-27 18:42:03 +0100 |
commit | 9fed9930ce50e45354ea3630282369d9cbf41332 (patch) | |
tree | bbff8153b688078490f75948769e9c7d65f92c9c /pp.c | |
parent | a009834b5bcd633e6446e235821ffdb3091b62b8 (diff) | |
download | perl-9fed9930ce50e45354ea3630282369d9cbf41332.tar.gz |
Return DIE(...) to *return*ing Perl_die(...).
Much simplification ensues - witness the diffstat.
Changes Perl_die_unwind() to use Perl_croak() rather than DIE().
Reverses an unwise part of bb4c52e023e0fcad.
Reverts 9e95c6350a60744d and 805bf316c58ab2d7.
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -3618,7 +3618,6 @@ PP(pp_crypt) #else DIE(aTHX_ "The crypt() function is unimplemented due to excessive paranoia."); - return NORMAL; #endif } @@ -6020,7 +6019,6 @@ PP(unimplemented_op) dVAR; DIE(aTHX_ "panic: unimplemented op %s (#%d) called", OP_NAME(PL_op), PL_op->op_type); - return NORMAL; } PP(pp_boolkeys) |