From 6c9b4a53acafc43b717b821e0e5663186b2fdbd2 Mon Sep 17 00:00:00 2001 From: Mauritz Jeanson Date: Wed, 12 Dec 2007 20:01:02 +0000 Subject: [PATCH] Changed \w+ to $w in the regexp that matches entity declarations (indexentitydecl subroutine). The reason is that \w+ does not match entity names that contain periods. See bug #1847825. --- releasetools/xslns-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasetools/xslns-build b/releasetools/xslns-build index f36ac2e3e..1bb9bdade 100755 --- a/releasetools/xslns-build +++ b/releasetools/xslns-build @@ -375,7 +375,7 @@ sub indexentitydecl { my $newstring = ''; - while ( $string =~ m@^(.*?)()@sg ) { + while ( $string =~ m@^(.*?)()@sg ) { my $before = $1; my $entitystart = $2; my $entityname = $3; -- 2.40.0