--- CVSROOT/loginfo.pl 2002/11/15 16:34:16 1.3 +++ CVSROOT/loginfo.pl 2004/04/08 20:20:01 1.4 @@ -119,7 +119,11 @@ my $diffmsg = ''; foreach my $info (@modified_files_info) { my ($file, $old, $new) = @$info; - if ($file =~ m|TexConvert/tt.dynamic|) { $diffmsg='Diffs for '.$file.' not shown.'."\n";next; } + if ($file =~ m|TexConvert/tt.dynamic| || + $file =~ m|foxr/londtest| ) { + $diffmsg='Diffs for '.$file.' not shown.'."\n"; + next; + } open(LOG, "$cvs -Qn rdiff -r $old -r $new -u $file|") || die; while() { s/\r\n/\n/; $diffmsg .= $_; } close(LOG);