From 23235365f13694adad5c9d34ac03608a9d43e822 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 27 Oct 1998 21:29:46 +0000 Subject: Minor change to ease debugging. --- doc/tools/texi2www/texi2dvi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/tools/texi2www/texi2dvi b/doc/tools/texi2www/texi2dvi index cad99bef53..913904a921 100644 --- a/doc/tools/texi2www/texi2dvi +++ b/doc/tools/texi2www/texi2dvi @@ -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); -- cgit v1.2.3