mirror of
https://github.com/perlbot/perlbuut
synced 2025-06-07 22:15:45 -04:00
Increase children and fix utf8 always being on
This commit is contained in:
parent
af369d2895
commit
8693c31f9b
2 changed files with 6 additions and 6 deletions
|
@ -166,9 +166,9 @@ sub parse_main_conf {
|
||||||
}
|
}
|
||||||
|
|
||||||
my %conf_defaults = (
|
my %conf_defaults = (
|
||||||
start_plugin_children => 3,
|
start_plugin_children => 8,
|
||||||
max_plugin_children => 10,
|
max_plugin_children => 20,
|
||||||
child_handle_count => 10,
|
child_handle_count => 20,
|
||||||
http_plugin_port => 10080,
|
http_plugin_port => 10080,
|
||||||
pastebot_plugin_port => 10081,
|
pastebot_plugin_port => 10081,
|
||||||
);
|
);
|
||||||
|
|
|
@ -91,9 +91,9 @@ no warnings;
|
||||||
print STDOUT $ret;
|
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 "use utf8; \$\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 "use utf8; [ 'ß' =~ m/^\Qss\E\z/i ? 'True' : 'False' ];"; # Try to grab some more utf8 libs
|
||||||
eval "[CORE::fc '€']";
|
eval "use utf8; [CORE::fc '€']";
|
||||||
use charnames qw(:full);
|
use charnames qw(:full);
|
||||||
use PerlIO;
|
use PerlIO;
|
||||||
use PerlIO::scalar;
|
use PerlIO::scalar;
|
||||||
|
|
Loading…
Add table
Reference in a new issue