t/test.pl: Add comment about EBCDIC
authorKarl Williamson <public@khwilliamson.com>
Mon, 18 Mar 2013 03:42:20 +0000 (21:42 -0600)
committerKarl Williamson <public@khwilliamson.com>
Thu, 29 Aug 2013 15:56:03 +0000 (09:56 -0600)
t/test.pl

index 6de0dd4..c452c38 100644 (file)
--- a/t/test.pl
+++ b/t/test.pl
@@ -284,7 +284,9 @@ sub display {
                     if ($z =~ /[[:^print:]]/) {
 
                         # Use octal for characters traditionally expressed as
-                        # such: the low controls
+                        # such: the low controls, which on EBCDIC aren't
+                        # necessarily the same ones as on ASCII platforms, but
+                        # are small ordinals, nonetheless
                         if ($c <= 037) {
                             $z = sprintf "\\%03o", $c;
                         } else {