mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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. ;-)
This commit is contained in:
parent
0237909e42
commit
9bbdce5945
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue