From 966d3e7820fef36badefcf4249b5cbc6f5839212 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 28 Feb 2004 17:32:30 +0000 Subject: [PATCH] \" comments weren't recognized in column 0. --- info/emp2html.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info/emp2html.pl b/info/emp2html.pl index 2dc93a93..75283f52 100644 --- a/info/emp2html.pl +++ b/info/emp2html.pl @@ -13,7 +13,7 @@ print "\n"; line: while (<>) { chomp; # strip record separator - s/([^\\](\\\\)*)\\\".*/$1/g; # strip comments + s/((^|[^\\])(\\\\)*)\\\".*/$1/g; # strip comments @a = req($_); if (!@a) {