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>.
This commit is contained in:
Fred Drake 1999-04-13 22:08:59 +00:00
parent e331356ff7
commit 1cc5899742
1 changed files with 1 additions and 1 deletions

View 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 $_;
}