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

Skip to content

Commit 9d4b6c5

Browse files
committed
Update the module index support to use the changed field separator for the
input file to buildindex.py.
1 parent e5cf53a commit 9d4b6c5

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
@@ -73,7 +73,7 @@ sub top_navigation_panel {
7373
}
7474

7575
sub bot_navigation_panel {
76-
"<div class=navigation><hr>"
76+
"<p>\n<div class=navigation><hr>"
7777
. &make_nav_panel
7878
. "</div>"
7979
}
@@ -115,7 +115,7 @@ sub add_module_idx{
115115
open(MODIDXFILE, ">modindex.dat") || die "\n$!\n";
116116
foreach $key (keys %Modules) {
117117
# dump the line in the data file; just use a dummy seqno field
118-
print MODIDXFILE "$Modules{$key}\0$key###\n";
118+
print MODIDXFILE "$Modules{$key}" . $IDXFILE_FIELD_SEP . "$key###\n";
119119
}
120120
close(MODIDXFILE);
121121
$index = `$myrootdir/tools/buildindex.py modindex.dat`;

0 commit comments

Comments
 (0)