--- CVSROOT/loginfo.pl 2002/02/06 17:53:44 1.1 +++ CVSROOT/loginfo.pl 2007/08/18 00:36:56 1.5 @@ -119,6 +119,12 @@ my $diffmsg = ''; foreach my $info (@modified_files_info) { my ($file, $old, $new) = @$info; + if ($file =~ m|TexConvert/tt.dynamic| || + $file =~ m|foxr/londtest| || + $file =~ m|purdue| ) { + $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);