]> granicus.if.org Git - python/commitdiff
Fix problem of LaTeX leakage in the module synopsis tables at the
authorFred Drake <fdrake@acm.org>
Tue, 13 Apr 1999 22:08:59 +0000 (22:08 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 13 Apr 1999 22:08:59 +0000 (22:08 +0000)
beginning of chapters.  Known problem reported by Barry Scott
<barry@scottb.demon.co.uk>.

Doc/perl/python.perl

index 98bbe3f93f2d951124d642d4a29b4e32571abb5e..f7bd48e694dc669198e509c076979a79edfc3611 100644 (file)
@@ -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 $_;
 }