From: Fred Drake Date: Tue, 13 Apr 1999 22:08:59 +0000 (+0000) Subject: Fix problem of LaTeX leakage in the module synopsis tables at the X-Git-Tag: v1.6a1~1608 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1cc58997421cf9edc42e7230146cdf895405a3d1;p=python Fix problem of LaTeX leakage in the module synopsis tables at the beginning of chapters. Known problem reported by Barry Scott . --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 98bbe3f93f..f7bd48e694 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 $_; }