From 35c12654773b5330000453a938f1a4d92f6458e3 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Sun, 5 Jan 2025 21:19:56 +0000 Subject: [PATCH] perldelta - Remove backticks (Spotted by mauke) --- pod/perldelta.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pod/perldelta.pod b/pod/perldelta.pod index db41fc297a51..122fdb8635c6 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -98,12 +98,12 @@ C package would crash or assert due to a C handling bug. =item * -Fixed an issue where `utf8n_to_uvchr` failed to correctly identify certain +Fixed an issue where C failed to correctly identify certain invalid UTF-8 sequences as invalid. Specifically, sequences that start with continuation bytes or unassigned bytes could cause unexpected behaviour or a panic. This fix ensures that such invalid sequences are now properly detected and handled. This correction also resolves related issues in modules that -handle UTF-8 processing, such as `Encode.pm`. +handle UTF-8 processing, such as L. =item *