Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9bbdce5

Browse files
committed
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. ;-)
1 parent 0237909 commit 9bbdce5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/perl/l2hinit.perl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ sub insert_index{
236236
}
237237

238238
sub add_idx{
239-
print "\nDoing the index ...";
239+
print "\nBuilding HTML for the index ...";
240240
close(IDXFILE);
241241
insert_index($idx_mark, 'index.dat', $INDEX_COLUMNS, 1);
242242
}
@@ -246,7 +246,7 @@ sub add_idx{
246246
$idx_module_title = 'Module Index';
247247

248248
sub add_module_idx{
249-
print "\nDoing the module index ...";
249+
print "\nBuilding HTML for the module index ...";
250250
my $key;
251251
open(MODIDXFILE, '>modindex.dat') || die "\n$!\n";
252252
foreach $key (keys %Modules) {

0 commit comments

Comments
 (0)