Commit 1cc58997 authored by Fred Drake's avatar Fred Drake

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>.
parent e331356f
...@@ -1003,7 +1003,7 @@ sub do_cmd_declaremodule{ ...@@ -1003,7 +1003,7 @@ sub do_cmd_declaremodule{
sub do_cmd_modulesynopsis{ sub do_cmd_modulesynopsis{
local($_) = @_; local($_) = @_;
my $st = get_synopsis_table(get_chapter_id()); 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 $_; return $_;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment