From: Norman Walsh Date: Thu, 13 Jun 2002 14:58:56 +0000 (+0000) Subject: Handle parameters not really declared in params.xweb X-Git-Tag: release/1.79.1~6^2~5557 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=188124578ee1fa8e7d145cbade9e8fe426bc8cf5;p=docbook-dsssl Handle parameters not really declared in params.xweb --- diff --git a/cvstools/paramchk b/cvstools/paramchk index cadfc2811..ae31965c2 100755 --- a/cvstools/paramchk +++ b/cvstools/paramchk @@ -44,10 +44,12 @@ while () { if (/) { close (F); foreach my $param (keys %params) { + # nb: chunker.output.* and saxon.character.representation are special! + if ($param eq 'saxon.character.representation' + || $param =~ /^chunker\.output\./) { + next; + } + if ($params{$param} == 0) { warn "No fragref for param: $param\n"; $ok = 0;