From: joy <> Date: Wed, 11 Oct 2000 03:10:34 +0000 (-0800) Subject: [project @ 2000-10-10 20:10:34 by joy] X-Git-Tag: release/2.6.0~1209 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4059736c01705c8bf79411f8e71ae351821c3e66;p=debbugs.git [project @ 2000-10-10 20:10:34 by joy] the array can't be used here, it must be the scalar, for some obscure reason --- diff --git a/scripts/process.in b/scripts/process.in index 8224625d..9d80c056 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.18 2000/10/09 00:32:23 ajt Exp $ +# $Id: process.in,v 1.19 2000/10/10 20:10:34 joy Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -452,8 +452,11 @@ END Your message specified a Severity: in the pseudo-header, but the severity value $s_severity was not recognised. The default severity $gDefaultSeverity is being used instead. -The recognised values are: @gSeverityList. +The recognised values are: $gShowSeverities. END +# if we use @gSeverityList array in the above line, perl -c gives: +# In string, @gSeverityList now must be written as \@gSeverityList at +# process line 452, near "$gDefaultSeverity is being used instead. $s_severity= ''; } }