diff --git a/info/emp2html.pl b/info/emp2html.pl
index 4c5c9fba..86802900 100644
--- a/info/emp2html.pl
+++ b/info/emp2html.pl
@@ -8,7 +8,7 @@ my @a;
line: while (<>) {
chomp; # strip record separator
- s/([^\\](\\\\)*)\\\".*/$1/g;# strip comments
+ s/([^\\](\\\\)*)\\\".*/$1/g; # strip comments
@a = req($_);
@@ -72,7 +72,7 @@ sub req {
if (/^([\.\'])[ \t]*([^ ]+) *(.*)/) {
my @a = ($1, $2);
$_ = $3;
- while (/(\"((\\.|[^\\\"])*)(\"|$))|(([^ ]|\\.)+) */g) {
+ while (/(\"((\\.|[^\\\"])*)(\"|\Z))|(([^ ]|\\.)+) */g) {
push(@a, $2 || $5);
}
return @a;
@@ -98,38 +98,38 @@ sub anchor {
# Translate HTML special characters into escape sequences
sub htmlify {
- local ($_) = @_;
- die "funny escape character `$esc' not supported"
- if $esc && $esc ne "\\";
- # translate some troff escapes
- s/\\&//g if $esc; # zero width space character
- # escape HTML special characters
- s/\&/&/g;
- s/\</g;
- s/\>/>/g;
- return $_ unless $esc;
- # translate more troff escapes
- s/\\e/&\#92;/g; # escape character
- # turn quoted strings that look like info names into links
- # tacky...
- while (/(\\\*Q)([A-Za-z0-9\-\.]+)(\\\*U)/) {
- $_ = $` . anchor($2) . "$'";
- }
- while (/(\"info )([A-Za-z0-9\-\.]+)/) {
- $_ = "$`\"info " . anchor($2) . "$'";
- }
- # tranlate more troff escapes and strings
- s/\\\*Q//g;
- s/\\\*U/<\/em>/g;
- s/\\fI//g;
- s/\\fR/<\/em><\/em>/g;
- s/\\fB//g;
- s/\\fP/<\/strong><\/em>/g;
- s/\\\*\(bF//g; # bold font
- s/\\\*\(pF/<\/strong><\/em>/g; # pica font
- s/\\\*\(nF/<\/strong><\/em>/g; # normal font
- s/\\\*\(iF//g; # italic font
- s/\\\(mu/x/g; # multiply symbol
- s/\\ / /g; # non breaking space
- return $_;
+ local ($_) = @_;
+ die "funny escape character `$esc' not supported"
+ if $esc && $esc ne "\\";
+ # translate some troff escapes
+ s/\\&//g if $esc; # zero width space character
+ # escape HTML special characters
+ s/\&/&/g;
+ s/\</g;
+ s/\>/>/g;
+ return $_ unless $esc;
+ # translate more troff escapes
+ s/\\e/&\#92;/g; # escape character
+ # turn quoted strings that look like info names into links
+ # tacky...
+ while (/(\\\*Q)([A-Za-z0-9\-\.]+)(\\\*U)/) {
+ $_ = $` . anchor($2) . "$'";
+ }
+ while (/(\"info )([A-Za-z0-9\-\.]+)/) {
+ $_ = "$`\"info " . anchor($2) . "$'";
+ }
+ # tranlate more troff escapes and strings
+ s/\\\*Q//g;
+ s/\\\*U/<\/em>/g;
+ s/\\fI//g;
+ s/\\fR/<\/em><\/em>/g;
+ s/\\fB//g;
+ s/\\fP/<\/strong><\/em>/g;
+ s/\\\*\(bF//g; # bold font
+ s/\\\*\(pF/<\/strong><\/em>/g; # pica font
+ s/\\\*\(nF/<\/strong><\/em>/g; # normal font
+ s/\\\*\(iF//g; # italic font
+ s/\\\(mu/x/g; # multiply symbol
+ s/\\ / /g; # non breaking space
+ return $_;
}
diff --git a/info/subj2html.pl b/info/subj2html.pl
index 76354030..f23819a5 100644
--- a/info/subj2html.pl
+++ b/info/subj2html.pl
@@ -9,7 +9,7 @@ my @a;
line: while (<>) {
chomp; # strip record separator
- s/([^\\](\\\\)*)\\\".*/$1/g;# strip comments
+ s/([^\\](\\\\)*)\\\".*/$1/g; # strip comments
@a = req($_);
@@ -79,7 +79,7 @@ sub req {
if (/^([\.\'])[ \t]*([^ ]+) *(.*)/) {
my @a = ($1, $2);
$_ = $3;
- while (/(\"((\\.|[^\\\"])*)(\"|$))|(([^ ]|\\.)+) */g) {
+ while (/(\"((\\.|[^\\\"])*)(\"|\Z))|(([^ ]|\\.)+) */g) {
push(@a, $2 || $5);
}
return @a;
@@ -105,38 +105,38 @@ sub anchor {
# Translate HTML special characters into escape sequences
sub htmlify {
- local ($_) = @_;
- die "funny escape character `$esc' not supported"
- if $esc && $esc ne "\\";
- # translate some troff escapes
- s/\\&//g if $esc; # zero width space character
- # escape HTML special characters
- s/\&/&/g;
- s/\</g;
- s/\>/>/g;
- return $_ unless $esc;
- # translate more troff escapes
- s/\\e/&\#92;/g; # escape character
- # turn quoted strings that look like info names into links
- # tacky...
- while (/(\\\*Q)([A-Za-z0-9\-\.]+)(\\\*U)/) {
- $_ = $` . anchor($2) . "$'";
- }
- while (/(\"info )([A-Za-z0-9\-\.]+)/) {
- $_ = "$`\"info " . anchor($2) . "$'";
- }
- # tranlate more troff escapes and strings
- s/\\\*Q//g;
- s/\\\*U/<\/em>/g;
- s/\\fI//g;
- s/\\fR/<\/em><\/em>/g;
- s/\\fB//g;
- s/\\fP/<\/strong><\/em>/g;
- s/\\\*\(bF//g; # bold font
- s/\\\*\(pF/<\/strong><\/em>/g; # pica font
- s/\\\*\(nF/<\/strong><\/em>/g; # normal font
- s/\\\*\(iF//g; # italic font
- s/\\\(mu/x/g; # multiply symbol
- s/\\ / /g; # non breaking space
- return $_;
+ local ($_) = @_;
+ die "funny escape character `$esc' not supported"
+ if $esc && $esc ne "\\";
+ # translate some troff escapes
+ s/\\&//g if $esc; # zero width space character
+ # escape HTML special characters
+ s/\&/&/g;
+ s/\</g;
+ s/\>/>/g;
+ return $_ unless $esc;
+ # translate more troff escapes
+ s/\\e/&\#92;/g; # escape character
+ # turn quoted strings that look like info names into links
+ # tacky...
+ while (/(\\\*Q)([A-Za-z0-9\-\.]+)(\\\*U)/) {
+ $_ = $` . anchor($2) . "$'";
+ }
+ while (/(\"info )([A-Za-z0-9\-\.]+)/) {
+ $_ = "$`\"info " . anchor($2) . "$'";
+ }
+ # tranlate more troff escapes and strings
+ s/\\\*Q//g;
+ s/\\\*U/<\/em>/g;
+ s/\\fI//g;
+ s/\\fR/<\/em><\/em>/g;
+ s/\\fB//g;
+ s/\\fP/<\/strong><\/em>/g;
+ s/\\\*\(bF//g; # bold font
+ s/\\\*\(pF/<\/strong><\/em>/g; # pica font
+ s/\\\*\(nF/<\/strong><\/em>/g; # normal font
+ s/\\\*\(iF//g; # italic font
+ s/\\\(mu/x/g; # multiply symbol
+ s/\\ / /g; # non breaking space
+ return $_;
}