digraphs: put _ at the left of table
authorMischa POSLAWSKY <perl@shiar.org>
Tue, 16 Sep 2008 02:50:19 +0000 (02:50 +0000)
committerMischa POSLAWSKY <perl@shiar.org>
Thu, 9 Oct 2008 21:34:31 +0000 (21:34 +0000)
While underscore is at the end by ASCII ordering, it's only character
left after the letters, and groups are certainly more balanced if it's
put at the beginning with other punctuation.

digraphs.plp

index d339b094001200692dc1e8b94a1ffe1cfdbe732e..81944b2e50c63d8186f81c3abbc8bb734b933c0d 100644 (file)
@@ -41,7 +41,7 @@ my @chars = (
        ['A'..'M'], ['N'..'Z'],
        ['a'..'m'], ['n'..'z'],
 );
        ['A'..'M'], ['N'..'Z'],
        ['a'..'m'], ['n'..'z'],
 );
-my @chars2 = (@chars, ['_']);  # trailing character (extended set)
+my @chars2 = (['_'], @chars);  # trailing character (extended set)
 
 print '<table><col>';
 print qq'<colgroup span="$_">' for map {scalar @$_} @chars2;
 
 print '<table><col>';
 print qq'<colgroup span="$_">' for map {scalar @$_} @chars2;