diff --git a/Documentation/process.pl b/Documentation/process.pl index fd2f4b3db..69a3107c4 100755 --- a/Documentation/process.pl +++ b/Documentation/process.pl @@ -6,10 +6,12 @@ while (<>) { # Replace commas that are inside double quotes - s/("[^"]*),([^"]*")/$1$2/g; - + while (s/("[^"]*),([^"]*")/$1$2/g) + { + ; + } # Replace the double quotes themselves - s/"([^"]*)"/$1/g; + s/"//g; # Split the line and grab the issue number and description my @parts = split(/,/);