summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-04-11 05:21:14 (GMT)
committerFred Drake <fdrake@acm.org>1998-04-11 05:21:14 (GMT)
commit9d4b6c52c3844e4939de2ab4f9ad5d4a1d754e74 (patch)
tree51cee3cd3e8ff3945b86a4af40f43297afab85eb /Doc
parente5cf53ad894aec93fd47b2ac20cc7974d04a082d (diff)
downloadcpython-9d4b6c52c3844e4939de2ab4f9ad5d4a1d754e74.zip
cpython-9d4b6c52c3844e4939de2ab4f9ad5d4a1d754e74.tar.gz
cpython-9d4b6c52c3844e4939de2ab4f9ad5d4a1d754e74.tar.bz2
Update the module index support to use the changed field separator for the
input file to buildindex.py.
Diffstat (limited to 'Doc')
-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 272a328..a73c227 100644
--- a/Doc/perl/l2hinit.perl
+++ b/Doc/perl/l2hinit.perl
@@ -73,7 +73,7 @@ sub top_navigation_panel {
}
sub bot_navigation_panel {
- "<div class=navigation><hr>"
+ "<p>\n<div class=navigation><hr>"
. &make_nav_panel
. "</div>"
}
@@ -115,7 +115,7 @@ sub add_module_idx{
open(MODIDXFILE, ">modindex.dat") || die "\n$!\n";
foreach $key (keys %Modules) {
# dump the line in the data file; just use a dummy seqno field
- print MODIDXFILE "$Modules{$key}\0$key###\n";
+ print MODIDXFILE "$Modules{$key}" . $IDXFILE_FIELD_SEP . "$key###\n";
}
close(MODIDXFILE);
$index = `$myrootdir/tools/buildindex.py modindex.dat`;