From 92a86afffe26e0ba84b47487c4ae768a7a19da27 Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Fri, 10 Nov 2023 02:25:32 +0100 Subject: [PATCH] add ( ) to little --- bin/little | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/little b/bin/little index 4ab9ff8..29af371 100755 --- a/bin/little +++ b/bin/little @@ -20,7 +20,7 @@ my %num = ( 0 => '⁰', 1 => '¹', 2 => '²', 3 => '³', ([4..9] Z ['⁴'..'⁹']).Map ); -my %other = ('!' => 'ꜝ', '.' => '·'); +my %other = ('!' => 'ꜝ', '.' => '·', '(' => '⁽', ')' => '⁾'); # }}} my %caseless = %lc, %num, %other; my %cased = %uc, %caseless;