From 1cc58997421cf9edc42e7230146cdf895405a3d1 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 13 Apr 1999 22:08:59 +0000 Subject: [PATCH] Fix problem of LaTeX leakage in the module synopsis tables at the beginning of chapters. Known problem reported by Barry Scott . --- Doc/perl/python.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 98bbe3f93f2..f7bd48e694d 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 $_; }