bugfix for long sub function names

This commit is contained in:
2022-11-04 16:08:25 +01:00
parent 6dc7224cea
commit ddfa24e15d

View File

@@ -46,6 +46,7 @@ if ($opt_D) { # Output dependencies only
}
$Text::Wrap::columns = 75;
$Text::Wrap::huge = "overflow";
# Eliminate chars not allowed in C symbol names
my $c_bad_ident_chars = '[^0-9A-Za-z_]';