From 7ed1e06975f70d098377f3c4fbc55ef7c8d83dce Mon Sep 17 00:00:00 2001 From: Norman Walsh Date: Thu, 13 Jun 2002 14:58:56 +0000 Subject: [PATCH] Handle parameters not really declared in params.xweb --- cvstools/paramchk | 8 ++++++++ 1 file changed, 8 insertions(+) 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; -- 2.50.1