add_module_idx(), add_idx_hook():
authorFred Drake <fdrake@acm.org>
Tue, 19 Jan 1999 16:30:10 +0000 (16:30 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 19 Jan 1999 16:30:10 +0000 (16:30 +0000)
Change the message printed before running buildindex.py;
"Doing the index..." wasn't clear and could be misinterpreted
with an inappropriate mindset.  ;-)

Doc/perl/l2hinit.perl

index ee2ab030787174bfd7d17ac753cd3c6bf87a821b..5fd2f817031a869c831859b5fc09816c9ea2feff 100644 (file)
@@ -236,7 +236,7 @@ sub insert_index{
 }
 
 sub add_idx{
-    print "\nDoing the index ...";
+    print "\nBuilding HTML for the index ...";
     close(IDXFILE);
     insert_index($idx_mark, 'index.dat', $INDEX_COLUMNS, 1);
 }
@@ -246,7 +246,7 @@ $idx_module_mark = '<tex2html_idx_module_mark>';
 $idx_module_title = 'Module Index';
 
 sub add_module_idx{
-    print "\nDoing the module index ...";
+    print "\nBuilding HTML for the module index ...";
     my $key;
     open(MODIDXFILE, '>modindex.dat') || die "\n$!\n";
     foreach $key (keys %Modules) {