summaryrefslogtreecommitdiffstats
path: root/Doc/perl
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-01-19 16:30:10 (GMT)
committerFred Drake <fdrake@acm.org>1999-01-19 16:30:10 (GMT)
commit9bbdce594512087c44b884857480906893579c9d (patch)
treecc30eb9ff6617ba656fadef492ba63188613d0ef /Doc/perl
parent0237909e420db2897034a371087963be4a312552 (diff)
downloadcpython-9bbdce594512087c44b884857480906893579c9d.zip
cpython-9bbdce594512087c44b884857480906893579c9d.tar.gz
cpython-9bbdce594512087c44b884857480906893579c9d.tar.bz2
add_module_idx(), add_idx_hook():
Change the message printed before running buildindex.py; "Doing the index..." wasn't clear and could be misinterpreted with an inappropriate mindset. ;-)
Diffstat (limited to 'Doc/perl')
-rw-r--r--Doc/perl/l2hinit.perl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/perl/l2hinit.perl b/Doc/perl/l2hinit.perl
index ee2ab03..5fd2f81 100644
--- a/Doc/perl/l2hinit.perl
+++ b/Doc/perl/l2hinit.perl
@@ -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) {