From 45e546597e85c5a586581f8f1665a32bc5cf5fd3 Mon Sep 17 00:00:00 2001
From: Wolfgang Bangerth <bangerth@math.tamu.edu>
Date: Wed, 28 Jun 2000 09:06:22 +0000
Subject: [PATCH] Fix this place also: allow more than one link per line.

git-svn-id: https://svn.dealii.org/trunk@3098 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/doc/auto/scripts/validate-xrefs.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deal.II/doc/auto/scripts/validate-xrefs.pl b/deal.II/doc/auto/scripts/validate-xrefs.pl
index 256feb8b7d..fa3f35be6b 100644
--- a/deal.II/doc/auto/scripts/validate-xrefs.pl
+++ b/deal.II/doc/auto/scripts/validate-xrefs.pl
@@ -59,7 +59,7 @@ foreach $filename (@ARGV) {
 		open IN2, $external_file;
 		$found = 0;
 		while ( <IN2> ) {
-		    if ( /<a name=\"?(.*?)[\s\"]/i ) {
+		    while ( /<a name=\"?(.*?)[\s\"]/gi ) {
 			if ( $1 eq $external_ref) {
 			    print "                    found.\n" if $debug;
 			    $found = 1;
-- 
2.39.5