summaryrefslogtreecommitdiff
path: root/app-text/po4a/files/po4a-0.69-invalid-byte.patch
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/po4a/files/po4a-0.69-invalid-byte.patch')
-rw-r--r--app-text/po4a/files/po4a-0.69-invalid-byte.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/app-text/po4a/files/po4a-0.69-invalid-byte.patch b/app-text/po4a/files/po4a-0.69-invalid-byte.patch
deleted file mode 100644
index f1f230a95b48..000000000000
--- a/app-text/po4a/files/po4a-0.69-invalid-byte.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-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 <jpalus@fastmail.com>
-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 );