From c83dffebcd5ca179507f9e1b58002704507c618d Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 10 Jul 2011 14:59:32 -0600 Subject: [PATCH] mktables: Suppress certain expected debug msgs mktables has a mode for quicker debugging to skip processing some input files. When this is done, it is to be expected that the output will be incomplete, so don't bother warning in this case. --- lib/unicore/mktables | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unicore/mktables b/lib/unicore/mktables index f013142..3257a47 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -14866,7 +14866,7 @@ END } # Output these warnings unless -q explicitly specified. -if ($verbosity >= $NORMAL_VERBOSITY) { +if ($verbosity >= $NORMAL_VERBOSITY && ! $debug_skip) { if (@unhandled_properties) { print "\nProperties and tables that unexpectedly have no code points\n"; foreach my $property (sort @unhandled_properties) { -- 2.7.4