From 0e4296004c227247fbf83f8f9969660bba2ed2cf Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Thu, 18 Nov 2010 21:01:26 -0700 Subject: [PATCH] mktables: Leave Unicode1 BELL name alone It occurred to me that I was changing both the name and Unicode 1 name fields, and only the name field is in conflict. So change just it. --- lib/unicore/mktables | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index d34b94d..a8209cf 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -10157,7 +10157,7 @@ END my ($code_point, @fields) = split /\s*;\s*/, $_, -1; if ($code_point eq '0007') { - $fields[$UNICODE_1_NAME] = "ALERT"; + $fields[$CHARNAME] = "ALERT"; } elsif ($^V lt v5.15.0) { # For 5.16 will convert to use Unicode's name $fields[$CHARNAME] = ""; -- 2.7.4