diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-11-05 21:52:28 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-11-08 08:09:35 -0700 |
commit | 4b17cb47ac871703eb920ca296a7e257f51aa330 (patch) | |
tree | 6b62f2092c07101227b797dc6276e3a6f5b1e4be /lib/utf8_heavy.pl | |
parent | c9db9632f551c711b9957f8e9e26d991fd564a91 (diff) | |
download | perl-4b17cb47ac871703eb920ca296a7e257f51aa330.tar.gz |
utf8_heavy.pl: Turn on $| if debugging
Diffstat (limited to 'lib/utf8_heavy.pl')
-rw-r--r-- | lib/utf8_heavy.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/utf8_heavy.pl b/lib/utf8_heavy.pl index 365530d8d3..5313902642 100644 --- a/lib/utf8_heavy.pl +++ b/lib/utf8_heavy.pl @@ -3,6 +3,7 @@ use strict; use warnings; sub DEBUG () { 0 } +$|=1 if DEBUG; sub DESTROY {} |