Search:
Help/Guide
About Trac
Preferences
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 15
and
Version 16
of
Perl
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
10/19/06 10:34:20 (
19 years
ago)
Author:
atzm
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Perl
v15
v16
439
439
440
440
=== 予期せぬエラーにスタックトレースをつけてくれ宣言 ===
441
* die
を置き換えてやれば良い
441
* die
や warn
を置き換えてやれば良い
442
442
{{{
443
443
#!perl
444
444
use Carp;
445
$SIG{__DIE__} = \&Carp::confess;
446
}}}
445
$SIG{__DIE__} = \&Carp::confess;
446
$SIG{__WARN__} = \&Carp::cluck;
447
}}}