https://bugs.gentoo.org/938967 https://github.com/mquinson/po4a/commit/7cf7b79ee28de7e58378b225570d49fd114ff75e.patch From 7cf7b79ee28de7e58378b225570d49fd114ff75e Mon Sep 17 00:00:00 2001 From: Jan Palus Date: Mon, 3 Jul 2023 14:56:04 +0200 Subject: [PATCH] SGML: replace invalid byte (0xa0) in comment with space (0x20) Fixes #428 --- lib/Locale/Po4a/Sgml.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Locale/Po4a/Sgml.pm b/lib/Locale/Po4a/Sgml.pm index 39dd66f2..d02f269d 100644 --- a/lib/Locale/Po4a/Sgml.pm +++ b/lib/Locale/Po4a/Sgml.pm @@ -773,7 +773,7 @@ sub parse_file { while ( $origfile =~ /^(.*?)&$key(;.*$|[^-_:.A-Za-z0-9].*$|$)/s ) { # Since we will include a new file, we - # must do a new round of substitutions. + # must do a new round of substitutions. $dosubstitution = 1; my ( $begin, $end ) = ( $1, $2 ); $end = "" unless ( defined $end );