1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 16:15:39 -04:00

Increase children and fix utf8 always being on

This commit is contained in:
Ryan Voots 2015-12-14 00:18:55 -05:00
parent af369d2895
commit 8693c31f9b
2 changed files with 6 additions and 6 deletions

View file

@ -166,9 +166,9 @@ sub parse_main_conf {
}
my %conf_defaults = (
start_plugin_children => 3,
max_plugin_children => 10,
child_handle_count => 10,
start_plugin_children => 8,
max_plugin_children => 20,
child_handle_count => 20,
http_plugin_port => 10080,
pastebot_plugin_port => 10081,
);

View file

@ -91,9 +91,9 @@ no warnings;
print STDOUT $ret;
}
use utf8; eval "\$\343\201\257 = 42; 'ש' =~ /([\p{Bidi_Class:L}\p{Bidi_Class:R}])/"; # attempt to automatically load the utf8 libraries.
eval "[ 'ß' =~ m/^\Qss\E\z/i ? 'True' : 'False' ];"; # Try to grab some more utf8 libs
eval "[CORE::fc '€']";
eval "use utf8; \$\343\201\257 = 42; 'ש' =~ /([\p{Bidi_Class:L}\p{Bidi_Class:R}])/"; # attempt to automatically load the utf8 libraries.
eval "use utf8; [ 'ß' =~ m/^\Qss\E\z/i ? 'True' : 'False' ];"; # Try to grab some more utf8 libs
eval "use utf8; [CORE::fc '€']";
use charnames qw(:full);
use PerlIO;
use PerlIO::scalar;