1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[conv] Minus instead of dot

This commit is contained in:
Witold Filipczyk 2024-03-16 12:33:56 +01:00
parent 6e4540cde7
commit 86285f9f66

View File

@ -175,7 +175,7 @@ while (<>) {
$name = substr($name, 1, length($name) - 2); $name = substr($name, 1, length($name) - 2);
$name =~ s/[ \t]/_/g; $name =~ s/[ \t]/_/g;
$name =~ s/[^a-zA-Z0-9_]/\./g; $name =~ s/[^a-zA-Z0-9_]/-/g;
$mimelist = &get_token(); $mimelist = &get_token();
$mimelist = substr($mimelist, 1, length($mimelist) - 2); $mimelist = substr($mimelist, 1, length($mimelist) - 2);