reduce the length of data in sentences to a default of 180 characters
authorminima <minima>
Thu, 17 Oct 2002 00:34:02 +0000 (00:34 +0000)
committerminima <minima>
Thu, 17 Oct 2002 00:34:02 +0000 (00:34 +0000)
perl/DXProtout.pm

index 1ef9c022a24d996c865ab162200f280cf4dc01f8..6917b88b8501b384d34fa958464911e4f54aa975 100644 (file)
@@ -27,7 +27,7 @@ $main::branch += $BRANCH;
 
 use vars qw($sentencelth);
 
-$sentencelth = 200;
+$sentencelth = 180;
  
 #
 # All the PCxx generation routines
@@ -141,7 +141,7 @@ sub pc19
                my $here = $ref->here;
                my $conf = $ref->conf;
                my $version = $ref->version;
-           my $str = "^$here^$call^$conf^$version";
+               my $str = "^$here^$call^$conf^$version";
                if (length($s) + length($str) >= $sentencelth) {
                        push @out, "PC19" . $s . sprintf "^%s^", get_hops(19);
                        $s = "";