Minor change to ease debugging.

This commit is contained in:
Joel Sherrill
1998-10-27 21:29:46 +00:00
parent b95914f9ee
commit 23235365f1

View File

@@ -94,7 +94,9 @@ foreach $raw_texi (@ARGV) {
opendir(DIR,".") || die "Couldn't read current directory -- $!\n";
@possible_index_files = ();
while ($_ = readdir(DIR)) {
push(@possible_index_files,$_) if (/^$base\...$/);
if (/^$base\...$/) {
push(@possible_index_files,$_);
}
}
closedir(DIR);