summaryrefslogtreecommitdiffstats
path: root/Doc/perl
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-04-13 22:08:59 (GMT)
committerFred Drake <fdrake@acm.org>1999-04-13 22:08:59 (GMT)
commit1cc58997421cf9edc42e7230146cdf895405a3d1 (patch)
tree23d197ce2c05a0b8a94bcfc8729f34f6c077c0c5 /Doc/perl
parente331356ff7ecc6ec560321d93a9c13ca0ccd7eff (diff)
downloadcpython-1cc58997421cf9edc42e7230146cdf895405a3d1.zip
cpython-1cc58997421cf9edc42e7230146cdf895405a3d1.tar.gz
cpython-1cc58997421cf9edc42e7230146cdf895405a3d1.tar.bz2
Fix problem of LaTeX leakage in the module synopsis tables at the
beginning of chapters. Known problem reported by Barry Scott <barry@scottb.demon.co.uk>.
Diffstat (limited to 'Doc/perl')
-rw-r--r--Doc/perl/python.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl
index 98bbe3f..f7bd48e 100644
--- a/Doc/perl/python.perl
+++ b/Doc/perl/python.perl
@@ -1003,7 +1003,7 @@ sub do_cmd_declaremodule{
sub do_cmd_modulesynopsis{
local($_) = @_;
my $st = get_synopsis_table(get_chapter_id());
- $st->set_synopsis($THIS_MODULE, next_argument());
+ $st->set_synopsis($THIS_MODULE, translate_commands(next_argument()));
return $_;
}