[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: POSSIBLLY FIX console-data problem



At Thu, 04 Nov 1999 03:18:54 +0900,
Fumitoshi UKAI <ukai@debian.or.jp> wrote:
 
> I investigate about recent important console-data bugs, and
> I think I find a fix of this bug.

Oops, sorry this was wrong.  I misunderstood the code...

This patch really fix this problem, I think..

--- console-data.config-dist	Thu Nov  4 03:12:32 1999
+++ console-data.config-new	Thu Nov  4 03:41:14 1999
@@ -89,7 +89,7 @@
 	    'Germany' => {
 		'Standard' => 'de',
 		'latin1' => 'de-latin1',
-		'latin1, no dead keys' => 'de-latin1-nodeadkeys',
+		'latin1 no dead keys' => 'de-latin1-nodeadkeys',
 	    },
 	    'Slovakia' => {
 		'Standard' => 'sk-qwertz',
@@ -229,6 +229,7 @@
 sub merge_into {
     my ($hash, $confvar) = @_;
     my ($code, $ret) = metaget ($confvar, 'choices');
+    $ret =~ s/latin1, no dead keys/latin1 no dead keys/;
     my @existing = split (/, */, $ret);
     my $addedkeymaps = 0;
 
@@ -252,6 +253,7 @@
 sub remove_from {
     my ($hash, $confvar) = @_;
     my ($code, $ret) = metaget ($confvar, 'choices');
+    $ret =~ s/latin1, no dead keys/latin1 no dead keys/;
     my @existing = split (/, */, $ret);
     my @mine = h2a($hash);
     my @new = ();

Best regards,
Fumitoshi UKAI


Reply to: