1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 20:36:38 +02:00

Fix display of perl errors (use tab to force empty prefix on message)

This commit is contained in:
Sebastien Helleu
2010-04-12 15:29:30 +02:00
parent ea3588a8d7
commit acca17d142
+2 -2
View File
@@ -120,8 +120,8 @@ char *perl_weechat_code =
" }"
" return 0;"
"}"
"$SIG{__WARN__} = sub { weechat::print(\"\", \"perl error: $_[0]\"); };"
"$SIG{__DIE__} = sub { weechat::print(\"\", \"perl error: $_[0]\"); };"
"$SIG{__WARN__} = sub { weechat::print(\"\", \"\tperl error: $_[0]\"); };"
"$SIG{__DIE__} = sub { weechat::print(\"\", \"\tperl error: $_[0]\"); };"
};