From d43f0adfe4303591da0f3255ce110222bb04bc43 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 31 Oct 2023 20:17:34 +0100 Subject: [PATCH] keyboard: describe empty key categories Silence perl warning in Shiar_Sheet::Keyboard expecting
values. --- keyboard.plp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/keyboard.plp b/keyboard.plp index eee5d92..f4ede94 100644 --- a/keyboard.plp +++ b/keyboard.plp @@ -61,12 +61,12 @@ my $keys = Shiar_Sheet::Keyboard->new({ } @usint }, flag => { - g1 => ['unaltered'], - g2 => ['accented'], - g4 => ['latin'], - g5 => ['similar'], - g7 => ['other'], - g8 => ['combining'], + g1 => ['unaltered', "same results as without modifier"], + g2 => ['accented', "decomposes to the original letter with a combining accent"], + g4 => ['latin', "a different (accented) latin letter"], + g5 => ['similar', "transliterates (mostly) into the unmodified letter"], + g7 => ['other', "symbol not directly deducible from key"], + g8 => ['combining', "diacritical mark to be combined with a following character"], }, }); $keys->map($get{map}) or undef $get{map}; -- 2.30.0