Fix typo in regexp to detect m4 comments.

This commit is contained in:
uwe 2019-12-03 01:52:04 +00:00
parent 9e180a6532
commit 64c20d4153
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ while(<>) {
$msg =~ s/^REM\s*//g; # BASIC?!?
$msg =~ s/\nREM\s*/\n/g; # BASIC?!?
$msg =~ s/^dnl\s*//g; # m4
$msg =~ s/\dnl\s*/\n/g; # m4
$msg =~ s/\ndnl\s*/\n/g; # m4
$msg =~ s/^\s+-\s+//g; # seen in docbook files
$msg =~ s/\n\s+-\s+/ /g; #
$msg =~ s/^[#\\\|";]+\s*//g; # sh etc.